jcook331
16th November 2005, 18:50
As I understand it, there is a problem with using inputfield.visible multiple times in a script. Is there an alternative method for making input fields invisible for certain types of records and then visible for others? Thanks.

mark_h
16th November 2005, 20:28
I typically just use attr.input. I set it to false so the users can not enter data in those fields. No user complaints yet about this method.

jcook331
16th November 2005, 20:55
That's what I thought too, but they don't want the fields to show up at all. It gets confusing with so many fields there that certain people never use. If there is no other way to do this then we may just have to live with it.

mark_h
16th November 2005, 21:39
Is there a way to tell which user is running the session? You could then use this to launch a sub-session with the appropriate form for the user. So sub-session one has script, form, session for all fields and sub-session two has same script but a different form for the other users. Just a thought.