how to make a textbox mandatory on "Picker Enumeration list"
Pravin Patil (104●1●46●134)
| asked May 28 '15, 8:58 p.m.
edited May 29 '15, 2:42 a.m. by Ralph Schoon (63.6k●3●36●46) I have the below script to make a textbox REQUIRED, if the value=other from a picker enumeration list is "other", but its not working. The custom attribute id is "reason_for_request1" and the literal is "reason_for_request.literal.l12"
dojo.provide("org.example.workitems.providers.ProjReco");
(function() {
dojo.declare("org.example.workitems.providers.ProjReco", null, {
I have similar conditional script working for dropdown enumeration (not multiselect). Does it mean that this conditional script doesn't work with Picker Enumeration? Please let me know what's wrong with the script... |
Be the first one to answer this question!
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
picker or checkbox enumeration can be multiple values hence you may need to use Array to pick up the value.
you may check with https://jazz.net/library/article/1360 for more details and debugging tips on enumeration list values.