This question is locked. New answers and comments are not allowed.
Good morning.
I am migrating column definitions across to GridColumnSettings so that they can be re-ordered and persisted. We have an edit column , which will take a user to another page.
What is the best way to translate
To a Grid Column Setting ?
Cheers
Steven
I am migrating column definitions across to GridColumnSettings so that they can be re-ordered and persisted. We have an edit column , which will take a user to another page.
What is the best way to translate
.Columns(cols => cols.Template(m => Html.ActionLink("Edit", "Edit", new { id = m.Id }) ) .ClientTemplate("<a href='/AdminUser/Edit/<#= Id #>'>Edit</a>") .Width(50) .HtmlAttributes(new { style = "text-align:center", name = "commandCol" }) )
To a Grid Column Setting ?
Cheers
Steven