Hi,
I have a scenario where I need to prepopulate values inside multifield. How to achieve this? Please help?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi
you have to write loadcontent event js to prepopulate values.
In JS you have to add a item first based on the condition check and add values to that multifield.
example:
loadcontent js
if(multifield.getValue()=='')
{
multifield.addItem();
if{
here you can write your logic to set prepopulate values.
}
if you need any further help. just let me know.
Thanks.
Views
Replies
Total Likes
rk39193348 wrote...
Hi,
I have a scenario where I need to prepopulate values inside multifield. How to achieve this? Please help?
Also I need the values entered inside my multifield to stay in dialog. How to achieve this?
My dialog contains 9 text field and 1 dropdown field inside multifield. The values should be prepopulated inside the dialog
Views
Replies
Total Likes
Hi,
Do you mean the "Drop-down List" Adaptive Form component with Allow multiple selection checked?
If so, you can just configure with the spanner and add options under the items property.
Or you can add them with javascript using the Rules editor (hammer tool) and populate with code similar to this:
|
Views
Replies
Total Likes
Hi
you have to write loadcontent event js to prepopulate values.
In JS you have to add a item first based on the condition check and add values to that multifield.
example:
loadcontent js
if(multifield.getValue()=='')
{
multifield.addItem();
if{
here you can write your logic to set prepopulate values.
}
if you need any further help. just let me know.
Thanks.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies