Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Invalid date-offset qualifier provided: DUNDEFINED. Valid options are: ...

    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
    Code:
    [B]parseRelativeDateString : function (relativeDateString, suppressDefaults)[/B]
    on the row:
    Code:
    result.qualifier = parts[1].replace("]")
    When parts[1] is equal to 0D] then result.qualifier=0DUNDEFINED. It can be fixed by adding the second argument as empty string:
    Code:
    result.qualifier = parts[1].replace("]", "")
    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.

    #2
    Thanks for the headsup - this regression has been fixed as of tomorrow's builds.

    Comment

    Working...
    X