I have multiple check boxes.
Example ABC
DEF
EOL
PQR
1 If i check EOL or combination of check boxes with EOL A text box should be populated with a value.
2 If I uncheck EOL the textbox should be blank.
Issue
Even if i uncheck the EOL the textbox still holds the value.
The event is not triggered when we uncheck the boxes.
Could you please help me to fix the issue. Please find the screenshots and javascript snippet from the attachment.
Thanks
Prasanthi
Could you please try this code-
var choice=JSON.parse(id_type.getSelectedValue());
if(choice.length != 0){
for(var i=0;i< choice.length;i++){
if(choice[i]=="EOL")
{
RMPApplication.setVariable("deviation_number","1234");
}
else
{
RMPApplication.setVariable("deviation_number","");
}
}
}
Please let me know,if this works.
Thanks,
Madhuri,Fujitsu
Can you please help me in that usecase.
RMPApplication.setVariable("deviation_number","");
To view this discussion on the web visit https://groups.google.com/a/runmyprocess.com/d/msgid/supportforum/CACxsc-aXpS5POPmzLzUwU45i-XvyharOJWAKYB2tDP8uiWmWZA%40mail.gmail.com.--
Fujitsu - RunMyProcess
---
You received this message because you are subscribed to the Google Groups "RunMyProcess Support Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to supportforum...@runmyprocess.com.
To post to this group, send email to suppor...@runmyprocess.com.
Visit this group at http://groups.google.com/a/runmyprocess.com/group/supportforum/.
Problem solved using manual listener. Very good explanation on the usage of manual listener. Thank you very much for the response.
Regards
Prasanthi