Hi,
by default the columns’ title are static since at the design time the Columnmanager is inserted in the collection FixedHeaderRows of the gridControl. Depending on the collection you put them, they can be static on the header, on the footer or be scrollable.
the choices you have are the following:
this.gridControl1.HeaderRows.Add( this.columnManagerRow1 );
or
this.gridControl1.FixedHeaderRows.Add( this.columnManagerRow1 );
or
this.gridControl1.FooterRows.Add( this.columnManagerRow1 );
or
this.gridControl1.FixedFooterRows.Add( this.columnManagerRow1 );
Imported from legacy forums. Posted by Mohamed [Xceed] (had 875 views)