This question is locked. New answers and comments are not allowed.
I have an editable grid and I have used CellAction to add a green border if the cell is editable. However I also have filtering enabled for these columns and if the user filters the data the styling added to the cells is removed. Any ideas how I can retain this styling within the grid for these specific fields?
.CellAction(cell => { if (cell.Column.Title == "Tagging Type" || cell.Column.Title == "Comments" || cell.Column.Title == "Delete" ) { //Set the background of this cell only cell.HtmlAttributes["style"] = "border: 1px solid green !important; "; } })