I have a Kendo Grid with Inline Editing and the following for example:
.Editable(editable => editable.Mode(GridEditMode.InLine))
columns.Template(@<text></text>).ClientTemplate("<input type='checkbox' #= ActionAssign ? checked='checked':'' # class='chkbx5' />").Title("Assign").Width(100);
How can I only show the template checkbox only when in edit mode but when now like True/False etc. as a label or something. If that is too difficult then just disabling the checkbox. I am having a hard time finding some basic functionality type examples online.
Thanks
Sean
.Editable(editable => editable.Mode(GridEditMode.InLine))
columns.Template(@<text></text>).ClientTemplate("<input type='checkbox' #= ActionAssign ? checked='checked':'' # class='chkbx5' />").Title("Assign").Width(100);
How can I only show the template checkbox only when in edit mode but when now like True/False etc. as a label or something. If that is too difficult then just disabling the checkbox. I am having a hard time finding some basic functionality type examples online.
Thanks
Sean