How do I hide a checkbox?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-22-2008 03:00 AM
How do I hide a checkbox item in a catalog task?
I'm using: g_form.setVisible('variable', false);
It works fine if the variable type is a "Yes/No", but not if the Variable type is a checkbox which looks much cleaner on the form.
Labels:
- Labels:
-
Service Mapping
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-22-2008 03:40 AM
Try: setDisplay('field',true);
That's what we use all the time....
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-22-2008 12:16 PM
That did the trick! Thanks!