Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
UltraGrid ExpansionIndicator CheckOnDisplay seems not to work
posted

Hi, i tried to set de Grid Display Layout Override for the Expansion Indicator to Check on Display to prevent the Grid from showing "+" even if there is no child band for some rows.

but there was no difference.

i use a IENumerable Object as Datasource for the Grid.

i tried also with Windows Forms BindingSource, no difference

private void ultraGrid1_InitializeLayout(object sender, InitializeLayoutEventArgs e)
{
    e.Layout.Override.ExpansionIndicator = ShowExpansionIndicator.CheckOnDisplay;
}

private void SetDataSource()
{
   this.ultraGrid1.DataSource=this.Object;
   //this.ultraGrid1.DataSource= this.BindingSource   also tried via bindingSource
 }

also tried Override in Bands and searched a lot, nobody seems to have this kind of problem.

do i missed something?

thanks

Tom

Parents Reply Children
No Data