This question is locked. New answers and comments are not allowed.
For example, I have a bound column with a format and I need to reference the bound value (id) and an additional property (state) to determine how to format the cell data.
columns.Bound(m => m.Id).Format((m.state == "Show") ? "{0}" : ""));
In this case if the property "state" contains "Show" then I want the Id to be visible. If not, then the cell will contain and empty string.
Is it possible to reference another property of column in this way?