SmartClient Version: v13.0p_2024-02-10/AllModules Development Only (built 2024-02-10)
and also:
SmartClient Version: SNAPSHOT_v13.1d_2024-02-13/AllModules Development Only (built 2024-02-13)
Chrome on MacOS
Hello, please try this test case:
When choosing a date with the DateChooser, you'll see that the value logged in the change handler is a String. Without the format, it's actually a Date.
Is it expected, or is it a bug?
and also:
SmartClient Version: SNAPSHOT_v13.1d_2024-02-13/AllModules Development Only (built 2024-02-13)
Chrome on MacOS
Hello, please try this test case:
Code:
isc.DynamicForm.create({ ID: "aForm", fields: [ { name: "aDate", useTextField: true, type: "date", format: "dd/MM/yyyy", change: function (form, item, value) { isc.logEcho(value, isc.isA.String(value) ? "string" : "date"); } } ] });
Is it expected, or is it a bug?
Comment