Open GoogleCodeExporter opened 8 years ago
i have update the source code : function fnCreateDateRangeInput(oTable) {...}
$('#' + sFromId + ',#' + sToId, th).unbind("change");
$('#' + sFromId + ',#' + sToId, th).change(function (events) {
event.stopPropagation();
oTable.fnDraw();
fnOnFiltered();
return false;
});
but the duplication events still exist...
can anyone help me ,very thanks
Original comment by brucew...@gmail.com
on 8 May 2014 at 7:01
$('#' + sFromId + ',#' + sToId, th).unbind("change");
$('#' + sFromId + ',#' + sToId, th).bind("change",function (events) {
event.stopPropagation();
oTable.fnDraw();
fnOnFiltered();
return false;
});
Original comment by brucew...@gmail.com
on 8 May 2014 at 7:02
Original issue reported on code.google.com by
brucew...@gmail.com
on 8 May 2014 at 6:55