Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
5 replies
Subscribers
4 subscribers
Views
2188 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Plug-Ins
Am using FormAPI.setRequired("checkboxfieldid").id; in on load event o
sudharanid
A Score Level 3
over 12 years ago
Am using FormAPI.setRequired("checkboxfieldid").id; in on load event of form to make checkbox field as required dynamically. The checkbox allows multiple values. Am storing the selected values of checkbox in to DB.The statement is setting the field as required but it is not displaying the values that are selected. If am removing the required statement it is displaying the selected values. It is also working when checkbox is of single type and only 1 value is selected. Please help me how to make multivalued checkbox as required dynamically.........
OriginalPostID-65101
OriginalPostID-65101
Discussion posts and replies are publicly visible
Parents
0
raghunandanj3904
Certified Senior Developer
over 12 years ago
Hi Sudha, even for that, the same approach works. i tried now.
On click of radio button,
var radVal = FormAPI.getValue("radifieldId").id;
if(radVal=="Yes")
{
FormAPI.show("multichkboxID");
FormAPI.setRequired("multichkboxID",true);
}
else
{
FormAPI.hide("multichkboxID");
FormAPI.setRequired("multichkboxID",false);}
And in frm onload, initially keep the chekbox hidden.
This approach works fine for me.
Hope it helps
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
raghunandanj3904
Certified Senior Developer
over 12 years ago
Hi Sudha, even for that, the same approach works. i tried now.
On click of radio button,
var radVal = FormAPI.getValue("radifieldId").id;
if(radVal=="Yes")
{
FormAPI.show("multichkboxID");
FormAPI.setRequired("multichkboxID",true);
}
else
{
FormAPI.hide("multichkboxID");
FormAPI.setRequired("multichkboxID",false);}
And in frm onload, initially keep the chekbox hidden.
This approach works fine for me.
Hope it helps
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data