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
310
How to clear all bound columns from a ultragrid
posted

Hi all,

Is there any way to remove all bound columns of a ultragrid?

Parents
No Data
Reply
  • 71886
    Offline posted

    Hello,

    I do not think that this is possible since the WinGrid creates the columns depending on its datasource. You could hide a column by setting its 'Hidden' property to 'true', like this:

          ultraGrid1.DisplayLayout.Bands[0].Columns[0].Hidden = true;

     Please do not hesitate to contact me if you need any additional assistance.

Children