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
110
Ultra Grid Group By Header value in string
posted

Hi,

   I need to update values using ultra grid but when i drag a column  to header then i am not able to pick column name and value of that column to update.

For Example: I need to update the contact number of a client and when i group by contact number in a grid then the Column name and its values cannot be read directly . So is there any way to find the column name and its value after adding a group by header in ultra grid infragistics.

Parents
No Data
Reply
  • 7535
    Verified Answer
    Offline posted

    Hello Shakir,

     

    Thank you for posting to our forum . 

    I tried to follow the steps you provided but unfortunately I do not have clear understanding of your requirement. Can you please provide the steps with a small working sample application describing what you are trying to achieve.

    Although if you are trying to hide the grouped column then you can use column.HiddenWhenGroupBy property. 

    You can set the GroupByColumnsHidden off the Override to change this behavior so group-by columns aren't hidden. You can also set HiddenWhenGroupBy property off the UltraGridColumn to individually select columns that will be visible or hidden when grouped by.

     this.ultraGrid1.DisplayLayout.Bands[0].Override.GroupByColumnsHidden = DefaultableBoolean.True;

                         // Forthermore, you can override above settings by setting HiddenWhenGroupBy property

                        // on an individual column.

    this.ultraGrid1.DisplayLayout.Bands[0].Columns[0].HiddenWhenGroupBy = DefaultableBoolean.True;

    Please let me know if you need further assistance.

Children