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