Hi Isomorphic,
Warning is for Relative Date field.
We use smart GWT 5.0. Warning is appearing after every click on select item with N days ago, N month ago.
After investigation we found out a mistake in the file Isc_Core.js from modules-debug in the function
on the row:
When parts[1] is equal to 0D] then result.qualifier=0DUNDEFINED. It can be fixed by adding the second argument as empty string:
That's why we have as a result warning with incorrect qualifier.
This warning is appeared only for 5.0. Later we used version 3.1.
Warning is for Relative Date field.
We use smart GWT 5.0. Warning is appearing after every click on select item with N days ago, N month ago.
After investigation we found out a mistake in the file Isc_Core.js from modules-debug in the function
Code:
[B]parseRelativeDateString : function (relativeDateString, suppressDefaults)[/B]
Code:
result.qualifier = parts[1].replace("]")
Code:
result.qualifier = parts[1].replace("]", "")
This warning is appeared only for 5.0. Later we used version 3.1.
Comment