Updating adaptive form values from Javascript not retaining | Community
Skip to main content
jeevan25597530
New Participant
September 20, 2019
Solved

Updating adaptive form values from Javascript not retaining

  • September 20, 2019
  • 7 replies
  • 6361 views

Hi,

I'm facing an issue like updating adaptive form field's values from Javascript is not retaining/updating in the form, whereas I can see the updated values in the fields.

So, the issue is that the form field is still showing as empty when submitting, although it has been updated from js.

For textbox field, I able to overcome this issue like focusing it when updating value from js as below.

$("#selector").focus().val("somevalue");

But,for drop down I'm not able to. Help me on this if anyone has idea on this.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by workflowuser

you can get the som expression of the field from the ui

var citiesDropDropDown = guideBridge.resolveNode("guide[0].guide1[0].guideRootPanel[0].cities[0]");

       citiesDropDropDown.items = ["San Jose","Santa Clara"];

7 replies

jeevan25597530
New Participant
October 3, 2019

Thanks alot.! It works. Thanks for the code screenshot. Much appreciate your effort.

Mayank_Gandhi
Employee
September 23, 2019

As workflowuser​ mentioned about the using guideBridge API to perform get/set operation. That is the right way to do it. Please test and let us know if you need any help further.

Employee
September 20, 2019

Did you use the code provided?

workflowuserAccepted solution
Employee
September 20, 2019

you can get the som expression of the field from the ui

var citiesDropDropDown = guideBridge.resolveNode("guide[0].guide1[0].guideRootPanel[0].cities[0]");

       citiesDropDropDown.items = ["San Jose","Santa Clara"];

jeevan25597530
New Participant
September 20, 2019

Ya, I went through using resolvenode, but not able to achieve as am not sure how to use.

Sharing a sample code will help alot. Thanks.!

Employee
September 20, 2019

i will  send you sample code soon

Employee
September 20, 2019

You have to use GuideBridge api

google for adaptive forms GuideBridge api

in that api  there is resolveNode method to get hold of the field and then set its value