I am trying to add a dynamic onclick event using rich:findComponent as:
<font class="topFirstTablehdCategory2" style="font-size: 12px; cursor: pointer;" onclick="#{rich:findComponent('benchmarkEndDate').value = channelPerformanceController.resetDate}">
RESET
</font>
But I am getting
com.sun.el.parser.ParseException: Encountered "=" at line 1, column 48.
What I am willing to do, is to set string value to a rich:calender whose id is benchmarkEndDate supplied from the field resetDate of ChannelPerformanceController class.
I also write a javascript method in the jsp page:
function setResetDate(id, date) {
#{rich:findComponent('benchmarkEndDate').value} = date;
}
is not working. It is called as: onclick="setResetDate('benchmarkEndDate', '#{channelPerformanceController.resetDate}')"
It is rendering in browser as:
function setResetDate(id, date) {
2011-03-24 00:00:00.0 = date;
}
This method:
function setResetDate(id, date) {
document.getElementById(#{rich:clientId(id)}) = date;
}
is change into :
function setResetDate(id, date) {
document.getElementById() = date;
}
What I am doing wrong? How can I achieve this?