Hello
I have a Datasource with parameters declared in that way:
data: { Device: $(“#cbHistorySystemNumber”).val(), IncludeOperatorAction: $(“#jqxHistoryIncludeOper”).jqxCheckBox(‘val’), endDate: $(‘#tbHistoryEndDate’).jqxDateTimeInput(‘getDate’) },
I did the following functions to refresh the grid:
$(document).ready(function () {
$(‘#cbHistorySystemNumber’).on(‘select’, function (event) {
$(“#gvHistory”).jqxGrid(‘updatebounddata’);
});
});
$(document).ready(function () {
$(‘#tbHistoryEndDate’).on(‘change’, function (event) {
$(“#gvHistory”).jqxGrid(‘updatebounddata’);
});
});
$(document).ready(function () {
$(‘#jqxHistoryIncludeOper’).on(‘change’, function (event) {
$(“#gvHistory”).jqxGrid(‘updatebounddata’);
});
});
The problem is that when the events fired when I check the callback to the method in the server the parameters don’t change the value, the refresh is ok, the datasource go to the server but the parameters don’t have the changes that I made in the screen?? I missed something or what do you think
Thank you very much
Jose