Im trying to add a feature to an existing app that is using a rather dated Kendo version 2015.3.1111
I need to add a checkbox that when clicked will check or uncheck all checkboxes in the rows. I'm aware of a newer feature in the 2017+ libraries, but for now we can't update this app. So with jQuery, Ive looked at several examples, but its all over the place. Help? Examples?
My client and header template
columns.Template(@<
text
></
text
>).ClientTemplate("<
input
type
=
'checkbox'
id
=
'gridCheckbox'
onclick
=
'handleClick(this);'
value
=
'#= LineItemId #'
#= Selected ? 'checked':'' #
class
=
'chkbx'
/>")
.HeaderTemplate("<
input
type
=
'checkbox'
id
=
'masterCheckBox'
onclick
=
'checkAll(this)'
/>").Width(50);