mani manikantan

Greenhorn
+ Follow
since Apr 28, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by mani manikantan

Instead of searching for tool tip in jsf. we can go for the below scriplet code in jsp.

//java script code for onmouseover enent.
function showHideTooltip()
{
var obj = document.getElementById("frmApplnInfo:industry");
obj.title=obj.options[obj.selectedIndex].title;
}

Value present in the arraylist will be like below.
141456,Agriculture sectors.[/b]

<select name="industry" id="frmApplnInfo:industry" size=1 onmouseover="showHideTooltip()" STYLE="width:350px">
<option value="">----Select----</option>
<%
java.util.List industry=null;
industry=(java.util.List)session.getAttribute("industry");
if(industry==null){
industry=new LOVRetrievalBackingBean().getIndustry();
session.setAttribute("industry",industry);
}
for(int i=0;i<industry.size();i++){
String lovList=(String)industry.get(i);
String lovId=(String)lovList.substring(0,lovList.indexOf(","));
String lovValue=lovList.substring(lovList.indexOf(",") +1);
%>
<option value="<%=lovId%>" title="<%=lovValue%>"><%=lovValue%></option>
<%}
%>
</select>

13 years ago
JSF
hi All,
please pull me out of the below problem of JSF tag.

<h:inputText id="dateOfBirth" value="#{CustomerBean.dateOfBirth}" size="12" readonly="true"/>
If this date field is made as readonly="true". Even after entering the date Null is reflecting in the bean class after clicking the submit button. If this is not set to readonly="true" the date values which i entered is coming sucessfully in the JSF managed bean.

The below tag is not set to readonly. But i am trying to Reredering the values when some dropwown event is fired using ajax tag. But the values are not updating the Textboxes. If i made this as textboxes as readonly="true" then the values are getting renderd sucessfully and appering in the text box.
<h:inputText id="areaCode1" value="#{retailCustomerBackingBean.addressInfoBackingBean.contactInfoBackingBean.areaCode1}"/>

this is the ajax tag I used to Rerender the values when the action is fired on dropdown component.
<a4j:support event="onchange" reRender="areaCode1"/>

Thanks in Advance
13 years ago
JSF
hi Naveen Gupta

please find the below code

<h:inputText id="dateOfBirth" value="#{CustomerBean.dateOfBirth}" size="12" readonly="true"/>
if this date field is made as readonly="true". Null is reflecting after clicking the submit button even we give date in the field. If this is not set to readonly="true" the date values which i entered is coming sucessfully.

the below tag is not set to readonly. But i am trying to redering the values when some dropwown event is fired using ajax tag. but the values are not appearing in ths field. If i made this as readonly="true" then the values are getting renderd sucessfully and appering in the text box.
<h:inputText id="areaCode1" value="#{retailCustomerBackingBean.addressInfoBackingBean.contactInfoBackingBean.areaCode1}"/>

this is the ajax tag I used to rerender the values when the action is fired on dropdown component.
<a4j:support event="onchange" reRender="areaCode1"/>

please give me the solution
13 years ago
JSF
Hi all,
I am facing the problem of JSF <h:inputText> tag which not updating the managed bean values when attribute is readonlytrue. and while rerendering values from managed beans It is only updating the values in the textboxes when it is has been changed as readonly. If the attribute changed to readonly="false" then the values are not getting displayed in the text boxes

please some one help me. to resolve this readonly issue of JSF tag <h:inputText>
13 years ago
JSF