NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Johan van Zyl on April 12, 2011, 12:08:50 PM
-
I have a Drop for TaskType - depending on which TastType was selected the Form must Include or Hide certain columns.
Sometimes a column is tied to 2 or more TaskTypes
This does not work - it only obeys for the 1st TaskType
Include (p_web.GetSessionValue('LOG:TaskType')='RequestForStaff' or p_web.GetSessionValue('LOG:TaskType')='Registration')
Hide (p_web.GetSessionValue('LOG:TaskType')<>'RequestForStaff' p_web.GetSessionValue('LOG:TaskType')<>'Registration')
Please how do I get this to work?
ALSO
After choosing a TaskType - how can I immediately Include or Hide the appropriate columns without 1st having to Save record and then Change?
Thanks
-
Hi Johan,
Include and Hide are quite different settings.
If a field is not included, it is not there. It cannot be hidden, or unhidden later. So use this setting when you're deciding what fields to include, or exclude from the form.
The Hide setting is dynamic - the fields are there, just not visible. They can be toggled on and off during the life of the form.
So for a field which is only visible when taskType is 'Registration' or 'RequestForStaff, the HIDE condition would be;
(p_web.GetSessionValue('LOG:TaskType')<>'RequestForStaff' AND p_web.GetSessionValue('LOG:TaskType')<>'Registration')
Note that this is a case-sensitive comparison, so be careful with the possible values of TaskType.
On the TaskType field, Client-Side tab, in the reset list, add this dependent field to the list.
cheers
Bruce