Dear All,
I am using Ultrawebgrid in my application.
I have added 3 ultragridcolumns, two are hyperlinks and one is button.
Depending on the condition hyperlink are visible for only the specified row and button aur visible for all the rows.
I just want to hide the button only for the specified row.
Can you please help me out.
Thanks,
Preet Sahani.
I have a similar problem. I've seen this mentioned as a bug in V6.2 but I can't get it working in V7.2 With the code below, the delete button still shows in all cells.
Am I doing something wrong here in the grid_InitializeRow event:
if (canDelete())
e.Row.Cells.FromKey("DeleteButton").Column.Hidden = false;
else
e.Row.Cells.FromKey("DeleteButton").Column.Hidden = true;