I have create a Numberic input in a Dynamic form using this:
{
name : "totalAsset",
titel : "Total Asset",
prompt : "Total Asset"
type: "integer"
}
Open the form:
1. Type 80000 in the field
2. Delete last 2 digits => update total = 800
3. Now i did setValue as : dfAccount.getField("totalAsset").setValue("80000");
4. Value is updated to 80000
5. WHen I hover over the Input field, its getting changed to 800
Anybody faced this isssue? or know how to fix it ?
{
name : "totalAsset",
titel : "Total Asset",
prompt : "Total Asset"
type: "integer"
}
Open the form:
1. Type 80000 in the field
2. Delete last 2 digits => update total = 800
3. Now i did setValue as : dfAccount.getField("totalAsset").setValue("80000");
4. Value is updated to 80000
5. WHen I hover over the Input field, its getting changed to 800
Anybody faced this isssue? or know how to fix it ?
Comment