Hi Everyone!
I need to display a file upload section only if the deadline has not been reached.
Deadline is stored in:
#form.assessments.deadline[{requestParam.assessmentid}]#
Is something like this possible in Beanshell Permission and how would I do it?:
if(today > deadline){ return false; }else{ return true; }
1 Comment
Sonya
I got it working by using the following. (If there is a better way please let me know.)