Hi There,
Can you help me how can i dynamically hide a coumn of my WebDataGrid from my code side. I am new to Infragistics so please help me out.
And also how can i dynamically insert a column to the WebDataGrid with a LinkButton in it and bind the grid.
Thanks.
It was my understanding this feature would be included in this release - per earlier blogs on this same subjectHow would you recommend uniquely identifying a row and not have this value show in a column?
Thank you!
I could find this functionality with the Ultra Web Grid. I like to have the same with the WebDataGrid as this is a new control.
Thanks..!
I found a way. It is not pretty - but it works...
<ig:BoundDataField DataFieldName="ID" Key="ID" Width="0%" DataFormatString=' '> <Header Text="" />
using 0% for width (doesn't really get rid of the column in your DataGrid, but it makes t small)
and using ' ' (yes, that's a space) avoids the numeric value of the ID to display.