I have filled the ultrgrid with 3 columns.
sno value button
1 a Accept
2 b
3 a Accept
If value is a in a row i want to display the accept button otherwise null should be there in that row from button column.
Thanks,
swetha.
Hi,
That will work. You could also achieve something similar by setting the Style on the cell. Button for some cells and Image for the ones you want blank. The advantage to using Style is that an Image column still draws itself, so you have more control over the appearance of the cell.
Sorry i have solve it,
In initialiserow event,
If e.Row.Cells("column_name").Value = "a Then
e.Row.Cells("column_name").Hidden = True
End If
Thanks