SmartClient Version: v13.1p_2026-06-08/AllModules Development Only (built 2026-06-08)
SmartClient Version: v14.1p_2026-06-11/AllModules Development Only (built 2026-06-11)
Hi, I've noticed that when using browserInputType: "digits" on FormItems of type date/time with useMask: true, the mask is not displayed.
However, the mask is correctly applied when using browserInputType: "tel".
Is this expected behavior (i.e., a limitation or unsupported combination), or could this be a bug?
Test case:
with browserInputType:"digits":

with browserInputType:"tel":
SmartClient Version: v14.1p_2026-06-11/AllModules Development Only (built 2026-06-11)
Hi, I've noticed that when using browserInputType: "digits" on FormItems of type date/time with useMask: true, the mask is not displayed.
However, the mask is correctly applied when using browserInputType: "tel".
Is this expected behavior (i.e., a limitation or unsupported combination), or could this be a bug?
Test case:
Code:
isc.DynamicForm.create({
items:[
{name:"aDateTimeItem", type:"datetime", textFieldProperties:{browserInputType:"digits"}, useMask:true},
{name:"aTimeItem", type:"time", textFieldProperties:{browserInputType:"tel"}, useMask: true}
]
})
with browserInputType:"tel":
Comment