Open GoogleCodeExporter opened 9 years ago
thanks a lot for this ! you saved my day :)
Original comment by cha...@gmail.com
on 26 Oct 2012 at 3:46
I've found something about this issue.
I have 2 function. One uses the columnFilter() function and the other doesn't.
If I call the first function first and then the second one the datatables are
not properly created. this throws me this error: Uncaught Unexpected literal at
position X. The X could be the numbers 1 or 2.
Original comment by rickardoberdejo
on 29 Oct 2012 at 7:38
I solved it.
in line 170:
var dCellDate = $.datepicker.parseDate($.datepicker.regional[""].dateFormat,
aData[index]);
I printed in the console the value of aData[index]. When i was using the
datatables without the plugin this was taking '1.00' as value. then I just
check if the value of dEndDate in line 168 were a valid date.
var dEndDate = to.datepicker("getDate");
var dCellDate = null;
if((null != dEndDate) && !isNaN(dEndDate) && ("undefined" !== typeof
dEndDate.getDate)){
dCellDate = $.datepicker.parseDate("yy/mm/dd", aData[index]);
}
I hope this help someone else.
Original comment by rickardoberdejo
on 29 Oct 2012 at 8:42
Thanks for this! It is lucky I found it instead of wondering what I did wrong
for no reason.
Original comment by aw...@knightwatch.net
on 6 Sep 2013 at 1:18
Original issue reported on code.google.com by
kor...@gmail.com
on 1 Oct 2012 at 12:19