This question is locked. New answers and comments are not allowed.
Previously we have used column.template to add command buttons along with inbuild Edit and Delete commands.
When we tried to implement the inliine row editing, the textboxes and the column headers mismatched.
So we are trying to integrate pop-up editting so we downladed new dll of Q2 2010 Beta and added in our project,
We have an issue that while using columns.templates to generate a button its showing the buttons out side the grid.
Column command buttons are shown inside grid as a column.
Templated command buttons are shown outside the grid as a row above grid header
(it is showing set of buttons as in the grid rows).
columns.Template(e => { Response.Write(Html.ActionLink("Fields", "Index", "Field", new { id = e.EntityId, entityName = e.EntityName }, new { @class = "t-button" })); });Can we add templated columns with some links along with the command buttons?