1
Help for ParamQuery Grid (free version) / Re: JavaScript runtime error: Object doesn't support property or method 'slice'
« on: June 28, 2014, 06:33:10 am »
Marcos,
What lines did you change? I too am getting the same error using the NewtonSoft json serializer. It wored fine with the builtin .NET one but unfortunately that has an issue where it serializes the timezone offset of the server which causes time values to change for users in different zones.
The error I get is generated at line 3244 with this code
this.data = DMdata.slice(begIndx, endIndx)
if I change it to
this.data = DMdata.Table.slice(begIndx, endIndx)
it works fine but unfortunately other refreshes break.
Thanks,
Brad
What lines did you change? I too am getting the same error using the NewtonSoft json serializer. It wored fine with the builtin .NET one but unfortunately that has an issue where it serializes the timezone offset of the server which causes time values to change for users in different zones.
The error I get is generated at line 3244 with this code
this.data = DMdata.slice(begIndx, endIndx)
if I change it to
this.data = DMdata.Table.slice(begIndx, endIndx)
it works fine but unfortunately other refreshes break.
Thanks,
Brad