How I can make it griddataboundgrid column as Visible false manuvally in c#

Hi Viewers


 I am very new to Syncfusion controls ,  How  I can  make it griddataboundgrid column as Visible false  manuvally in c# at please help me 

                                                      thank you in Advance


1 Reply

MS Maniratheenam Sehar Syncfusion Team October 24, 2014 02:32 AM UTC

Hi Venkaiah,

 

Thank you for using Syncfusion Products.

 

Query:

How I can make it griddataboundgrid column as Visible false manuvally in c#

 

You can use Model.HideCols[2] property of gridDataBoundGrid to show or hide the grid columns. Please refer to the following code snippet,

 

CodeSnippet[C#]:

//To hide Columns

this.gridDataBoundGrid1.Model.HideCols[2] =true;

 

//To show Columns

this.gridDataBoundGrid1.Model.HideCols[2] =false;

 

 

Please let us know, if you have any concerns.

 

Regards,

ManiRatheenam S


Loader.
Up arrow icon