This question is locked. New answers and comments are not allowed.
I have the following column template defined.
columns .Template(t => {%> <table cellspacing="0" class="metric-data-row"> <tr> <td><%=t.Actual%></td> <td><%=t.Planned%></td> </tr> </table> <%}) .ClientTemplate("<table cellspacing='0' class='metric-data-row'><tr><td><#= Actual #></td><td><#= Planned #></td></tr></table>") .HeaderTemplate(() => {%> <table cellspacing="0" class="metric-data-header"> <tr> <td colspan="2"><strong>Type</strong></td> </tr> <tr> <td>Actual</td> <td>Plan</td> </tr> </table> <%}).Width(120);I would really like to utilize in-line editing of the above template column.
- Is This possible?
- If so, how?
Any help would be really appreciated as going for a pop up editor would really break the look and feel of what I am trying to achieve.
Thanks