I have a custom date component, I use a parameter id so that every component has its own id. Everything was going good until I tried to reRender some elements inside a component on some action of another element inside the same component. I have to read the value of a text field which is also inside the component and display the value in a combo box which is again inside the component. when I try to get the id of the textfield with javascript using componentId="#rich:clientId(id)}"; the id gives false id. It gives the id of the latest component rendered before the action was invoked. How can I get the id of the component from which the event was started?
The javascript function is:
function init() {
var componentId="#{rich:clientId(id)}";
alert(componentId);
formId=componentId.split(":")[0];
combinedId=componentId+":";
yearFieldId=combinedId+"nepCalYear"+"comboboxField";
monthFieldId=combinedId+"nepCalMonth"+"comboboxField";
dayFieldId=combinedId+"nepCalDay"+"comboboxField";
//getting Id for rich:comboBox value
yearValueId=combinedId+"nepCalYear"+"comboboxValue";
monthValueId=combinedId+"nepCalMonth"+"comboboxValue";
dayValueId=combinedId+"nepCalDay"+"comboboxValue";
//getting Id for nepali calender value
nepCalValId=combinedId+"nepCalVal";
if(!($(nepCalValId)==null)){
//getting date
dateString = $(nepCalValId).value;
if(dateString.length==10){
var splitDate = dateString.split("-");
var year=splitDate[0];
var month=splitDate[1];
var day=splitDate[2];
alert(day);
//getting month name
var monthName=getMonthNameNepCal(month);
//displaying the value
$(yearFieldId).value =year;
$(monthFieldId).value =monthName;
$(dayFieldId).value =day;
$(yearValueId).value =year;
$(monthValueId).value =monthName;
$(dayValueId).value =day;
//setting the style
$(yearFieldId).style.color='black';
$(monthFieldId).style.color='black';
$(dayFieldId).style.color='black';
}
}
};
Edit:
I have the component inside a subview <f:subview id="#{id}"> which gets its id from the page where I want to use the component
<isysft:calendar value="#{sms453.dataSetParam.startDate}" backingBean="#{sms453}" id="rangeStart"></isysft:calendar>
The actual problem is that I have two isysft:calendar components in a page. They have their specific ids as rangeStart and rangeEnd
<isysft:calendar value="#{sms453.dataSetParam.startDate}" backingBean="#{sms453}" id="rangeStart"></isysft:calendar>
<isysft:calendar value="#{sms453.dataSetParam.endDate}" backingBean="#{sms453}" id="rangeEnd"></isysft:calendar>
Now what I need is, I have to reRender the component rangeStart when user clicks a button which is inside rangeStart, also read a textbox value, which all are inside rangeStart. The reRender part is done well because I don't have to worry about the id send from the html page. But when I try to read the value of the text field using javascript, the value of id is rangeEnd, which gives me the value of the text field from rangeEnd component.
I hope this will help to sort out this problem.
#{rich:clientId(id)}. Instead, you need to show how you're managing the component ID. – BalusC Oct 31 '11 at 15:46