I use this mask on input that place inside editing tableWhen I click add to add new item on table (I use TableRecord)it will show the form and always show this error and the mask is not workingHow to fix this?
Hi
This happens because of how OutSystems renders new rows:
The input only exists in the DOM after you click Add.
If your mask JavaScript runs earlier (on page load or screen ready), it never gets applied to the dynamically created input.
You need to reapply the mask after OutSystems renders the new row.