When using a TextItem whose type is 'float' and a numeric mask is specified, the data entry is not behaving as would normally be expected.
Expected behavior: When the field acquires focus, the cursor should be on the right. Data entry should populate the field from the right, such that the field's display value is as follows when entering in the numbers 1,2,3,4 and 5.
Its like Windows 10 calculator numeric entry?
There is any solution to offer me for this situation?
I already thank yor for all efforts.
Code:
isc.DynamicForm.create({ ID: "contactForm", width: 400, wrapHintText: false, fields: [ { name: "firstName", title: "First name", editorType: "TextItem", mask: ">?<??????????????", hint: "<nobr>>?<??????????????</nobr>"}, { name: "lastName", title: "Last name", editorType: "TextItem", mask: ">?<??????????????", hint: "<nobr>>?<??????????????</nobr>"}, { name: "state", title: "State", editorType: "TextItem", mask: ">LL", hint: "<nobr>>LL</nobr>"}, { name: "phoneNo", title: "Phone No.", editorType: "TextItem", mask: "(###) ###-####", hint: "(###) ###-####", showHintInField: true}, { name: "dateItem", title: "Date", editorType: "DateItem", useTextField: true, useMask: true}, { name: "dateTimeItem", title: "Date Time", editorType: "DateTimeItem", useTextField: true, useMask: true}, { name: "timeItem", title: "Time", editorType: "TimeItem", useMask: true}, [B]{ name: "numericMask", type: "float", title: "Numeric", editorType: "FloatItem", mask: "###.###.##", useMask: true}[/B] ] });
Its like Windows 10 calculator numeric entry?
There is any solution to offer me for this situation?
I already thank yor for all efforts.
Comment