Hello,
I have a jqxGrid with hundreds of rows in it. One of the columns contains checkboxes. When a user clicks a checkbox, I want to make an api call to send the data from that row which the checkbox is located in, to the api. How would I do that?
<div id="ScheduleMappingGrid" class="stretch-grid" data-bind="jqxGrid: {
source: items,
editable: true,
enablebrowserselection: true,
columns: [
{ text: 'Room Name', dataField: 'ClmName', width: 250, sortable: true },
{ text: 'Enable Scheduling', dataField: 'IsEnabled', width: 175, columntype: 'checkbox' },
{ text: 'Calendar ID', dataField: 'CalendarID' },
]
}"></div>