You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 15, 2026. It is now read-only.
When setting allowNullValue:true: Once there is a valid date set, and setting the value to null the editor value is not set to null but the old one persists.
When setting allowNullValue:false and revertIfNotValid:false: Once there is a valid date set, and setting the value to null the editor value is not set to empty string but the old one persists..
Expected result
When setting allowNullValue:true , the editor value should become null.
When setting allowNullValue:false and revertIfNotValid:false, the editor value should become empty string.
Description
Binding fails when setting null value.
Steps to reproduce
Use the repository samples - igEditors sample http://localhost:3002/samples/igEditors/igEditors.html and add/update with the following code snippets:
Result
When setting allowNullValue:true: Once there is a valid date set, and setting the value to
nullthe editor value is not set tonullbut the old one persists.When setting allowNullValue:false and revertIfNotValid:false: Once there is a valid date set, and setting the value to
nullthe editor value is not set to empty string but the old one persists..Expected result
When setting allowNullValue:true , the editor value should become
null.When setting allowNullValue:false and revertIfNotValid:false, the editor value should become empty string.