Hi, Is there any mechanism in Ultragrid to expand all child rows inside a Groupbyrow when I click on "+" sign of the Ultragroupby row.Please do reply as I am wondering how to achieve this?
Actually my need is , that "+" symbol showing in the parent band even though it dont have any child bands.
How to remove that plus "+"symbol ,if there s no child band for particular row.
Even though there s no chilb band in bom # row showing "+" symbol
I need to do same way, But I need to assign runtime source instead of assigning ultradatrasource at design time.PLz any one help me its urgent
Hello Karthi2itnet,
You could set the ExpansionIndicator to be shown only when there are any children like the following in the IntializeLayout event of the UltraGrid:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Override.ExpansionIndicator = ShowExpansionIndicator.CheckOnDisplay; }Please let me know if you have any other questions with this matter.