infragistics ultrawingrid Tablestyles mappingname

  • Thread starter Thread starter i676373
  • Start date Start date
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
 
you want to hide a column?
ultraGrid1.DisplayLayout.Bands["MyBand"].Columns["MyColumn"].Hidden = true;
customize Caption:
ultraGrid1.DisplayLayout.Bands[0].Columns["MyColumn"].Header.Caption =
"...";
 
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.
 
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
 
Back
Top