Unanswered: How to set the form Values from store data
Unanswered: How to set the form Values from store data
Hi,
I have entered some data into a form and saved it into local storage. Now I want to display the data into another form in a ready only view. I am able to get data from the store but I am not able to display the data back into the form. Can anyone please suggest how to display the data into the form. I tried form.setvalues but it did not worked.
Currently I am trying to update the data for one record(multiple attributes) but unable to do so...form.setValues() is not working..
form.setValues({
status: 'Rejected by Claim Manager',
closure: '5 Days'
});
The value of status and closure fields are not changing.