-
how to do calculation using view state variables and then assign it to another view state
what I plan to do :
to display a pop up, reminding users that end date is earlier than start date, when a wrong end date is chosen and refresh button is pressed.
what I doing is:
add an action for button “refresh”, then assign a condition expression
$[endDate>startDate;alwaysTrue,alwaysFalse]
to a popup’s view state:
isInvalidEndDate
however the pop up will show up no matter if condition expression is true or not.
inside pop up, the end date and start date is displayed,
So how to control a pop up visibility with other view states?
Log in to reply.