I am trying to understand the correct way to use the pui.set() API to set the value of an element.
So I am trying to set the value of an element whose id is S1DECLAT. So tried pui.set("S1DECLAT", "800" ); but it doesnt work.
However, the id I see when I inspect the element in chrome is S1DECLAT.1, Using this successfully sets the value.
The below code sets the value of S1DECLAT element to 700 (The value assigned through the id from chrome inspector) and not 800. But I believe I must be missing something here as I am expecting to be able to use the id set in the profound designer? Please guide.
Code: Select all
alert(getElementValue("S1DECLAT.1"))
pui.set("S1DECLAT.1", "700" );
pui.set("S1DECLAT", "800" );
pui.click(btnSubmit);