Hi friends,
In my sample JSF 1.2 application i am having rich:dataTable that contains three rich:columns h:inputText fields for name, firstname,lastname.
If I change value in one field in rich:column (e.g name) that update values in other 2 columns (e.g first_name, last_name) in <rich:dataTable>.
After change value in name field (h:inputText) am calling <rich:modelPanel> to do some process . I'm using a4j:status to update, call rich:model panel. Still its working fine.
I.e after changing values in name field its calling rich:modelpanel changes updated in table.
Following is the sample code :
<a4j:region id="some value">
<h:dataTable id="test" value="some valus inList">.
<h:column>
<f:facet name="header">
<h:outputText value="name" />
</f:facet>
<h:inputText id="name" value="some val">
<a4j:support event="onblur" status="statusUpdate"/>
<a4j:support event="onchange" status="statusUpdate"/>
</h:inputText>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="f_name" />
</f:facet>
<h:inputText id="firstname" value="some val">
</h:inputText>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="f_name" />
</f:facet>
<h:inputText id="lastname" value="some val">
</h:inputText>
</h:column>
<a4j:status id="statusUpdate" onstart="#{rich:component('loadingPanel')}.show()" onstop="#{rich:component('loadingPanel')}.hide()" />
<rich:modalPanel id="loadingPanel">
some values.......
</rich:modalPanel>
</a4j:region>
</h:dataTable>
My requirment is after closed rich:modelapanel I have to set focus back to name field.
field (h:inputText) inside <rich:dataTable>. How to focus?. Friends do you have ay idea??
I am using Richfaces 3.3.3 and JSF 1.2. Any one have Idea about this??