I find myself needing to hide/show multiple fields of a form quite frequently throughout the user experience in a form. Instead of this:
hide Field1;
hide Field2;
hide Field3;
Can I do this:
hide Field1, Field2, Field3;
Or, better yet, perhaps something like this:
Group1 = group("Field1", "Field2", "Field3");
hide Group1;
show Group1;
Thanks!
Stefan