infragistics ultrawingrid Tablestyles mappingname

I

i676373

Hi,

Inside .net winforms datagrid you can defien datagrid tablestyles
(MappingName)
to hide/show/customise appearance for particular column.

Is there any corresponding functionality in Infragistics Ultrawingrid ?

thanks,

regards,
john
 
M

Martin

you want to hide a column?
ultraGrid1.DisplayLayout.Bands["MyBand"].Columns["MyColumn"].Hidden = true;
customize Caption:
ultraGrid1.DisplayLayout.Bands[0].Columns["MyColumn"].Header.Caption =
"...";
 
I

i676373

if there isn't any equivalent tablestyles feature in ultrawingrid, is
ther e any other way to show only certain column from the
datasource(let say a dataset)?

thanks.
 
R

Ron Allen

The best way to apply styles and hide columns is to put code to do this
in the InitilizeLayout event of the grid. You can also have row by row
styles for columns using the InitializeRow event. I'd suggest you ask the
question on the infragistics.dotnet.wingrid newsgroup on
news.infragistics.com where you will get a better target audience.

Ron Allen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top