How to set the captured string values in widget to the Mendix attributes

0
Hi Mendix fam,   Im developing a new widget in Mendix, where there is a need of assigning the Captured String values back to the mendix attributes for Numbers like decimals and Long, we are using Big.js Any leads please, Thanks in Advance Sairam Tanniru
asked
1 answers
3

your input should have a type number, when call back finish 

decimalField.setValue(Big(newDec));

decimalField is the xml key attribute, newDec is the new value when you enter on the input.

answered