I cannot find a way to refer to the value in a column in the grid, in my case it is StatusId. Based on the value of the cell in this row, for StatusId I need to return true or false to the ".Visible (???)" method. It would be nice to find the answer in the documentation online, but I could not. Itβs hard for me to believe that I would be the first person who ever needed this functionality.
I would be very grateful for any help, since no one on the telerik forums knows.
.Columns(columns => {
columns.Command(commands => {
commands.Edit().ButtonType(ButtonType);
commands.Delete().ButtonType(ButtonType);
}).Width(90).Visible(???);
Thank! Azee
source
share