I browsed the examples, but wasn't able to find anything, hoping someone
can help me :)
I have my schedule mapped to a SimpleScheduleModel in my managed bean,
like this:
<s:schedule
action="#{mybean.redirectAction}"
id="calendario"
value="#{mybean.model}"
rendered="true"
visibleStartHour="7"
visibleEndHour="21"
workingStartHour="9"
workingEndHour="18"
readonly="false"
theme="outlookxp"
tooltip="true"
/>
Whenever I click on an entry, the "redirectAction" method is called,
however when I call:
model.getSelectedEntry() I always get a null value.
model.getSelectedDate() does return a date
what is the correct way to check the entry that was clicked?
-Ricardo