Author
t:inputtext problem
Alireza Abedini
Greenhorn
Joined: Sep 06, 2008
Posts: 2
I use t:inputtext and work correctly at all page but one of them <t:inputText styleClass="textbox" value="#{aaa.entity.ip}" /> Problem: value load only textbox is readonly or disabled Can you help me? [ September 06, 2008: Message edited by: Alireza Abedini ]
Bauke Scholtz
Ranch Hand
Joined: Oct 08, 2006
Posts: 2458
posted Sep 06, 2008 10:01:00
0
Crossposted: http://forums.sun.com/thread.jspa?threadID=5329291 Please be forthright when crossposting: http://faq.javaranch.com/java/BeForthrightWhenCrossPostingToOtherSites
Code depot of a Java EE / JSF developer | JSF / Eclipse / Tomcat kickoff tutorial | DAO kickoff tutorial | I ♥ Unicode
Alireza Abedini
Greenhorn
Joined: Sep 06, 2008
Posts: 2
I posted this question the other day in forums.sun.com [ ,]http://forums.sun.com/thread.jspa?messageID=10414007], but wasn't able to get a good answer, so now I'm asking here... ! I have a page, contain a div that shown for edit a row of table. <t:div id="divAddAAA" forceId="true" style='display: none'> <a4j utputPanel ajaxRendered="true" id="addoreditAAA" > <h:inputHidden value="#{aaa.entity.id}" converter="javax.faces.Long"/> <my:table styleClass="dialogTable" border="0" id="tblAddAAA" width="100%"> <my:tr> <my:td colspan="4" styleClass="dialogTableHeader label"><h utputText value="#{aaa.strMode}" /></my:td> </my:tr> <my:tr> <my:td styleClass="text" align="left"><h utputText value="#{bundle['aaa.ip']}:" /></my:td> <my:td>*<t:inputText styleClass="textbox" value="#{aaa.entity.ip}" />*</my:td> <my:td styleClass="text" align="left"><h utputText value="#{bundle['aaa.mask']}:" /></my:td> <my:td>*<t:inputText styleClass="textbox" value="#{aaa.entity.mask}" />*</my:td> </my:tr> <my:tr> <my:td styleClass="text" align="left"><h utputText value="#{bundle['aaa.certificate']}:" /></my:td> <my:td> <t:inputTextarea styleClass="textbox" value="#{aaa.entity.certificate}" /> </my:td> </my:tr> <my:tr> <my:td colspan="4" align="left"> <a4j:commandLink actionListener="#{aaa.saveAAA}" style="width: 90px;" reRender="tblAAAsList,paging1,paging2" styleClass="saveLinkButton modalClose"> <t utputText value="#{bundle['save']}" styleClass="text" /> <t:graphicImage url="/common/images/save.png" align="absmiddle" border="0" /> <f:attribute name="projectID" value="#{aaa.entity.project.id}" /> </a4j:commandLink> <t utputText value=" " /> <a4j:commandLink style="width: 90px;" styleClass="cancelLinkButton modalClose"> <t utputText value="#{bundle['cancel']}" styleClass="text" /> <t:graphicImage url="/common/images/cancel.png" align="absmiddle" border="0" /> </a4j:commandLink> </my:td> </my:tr> </my:table> </a4j utputPanel> </t:div> at this div there are some <t:inputtext>. but when this inputtext is editable value is null. when i set readonly or disable to true, the value assign correctly [ September 08, 2008: Message edited by: Alireza Abedini ]
subject: t:inputtext problem