Hi, What you are asking is not possible. It is against the nature of JSF to do so. In your example, you should use a <h:inputText> to render the HTML <input>.
Good luck! Best regards, Bart Kummel On Tue, Sep 15, 2009 at 14:41, Dvora <[email protected]> wrote: > > Hello all, > > I was wondering - is it possible for the server side to access html > elements > (or the dom tree) that not rendered by myfaces tags? > > For example the following jsp: > > <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> > <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%> > <%...@taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%> > > > <f:view> > > . > . > . > <body> > > <h:form id="myForm"> > <input id="bbb" name="bbb" type="text" value=""/> > </h:form> > > </body> > > </f:view> > > > Can the backing bean access the 'bbb' input text element and its value? I > tried to debug and inspect the FacesContext instance, but found only > Myfaces > elements. > -- > View this message in context: > http://www.nabble.com/MyFaces---can-backing-beans-access-native-html-elements--tp25453164p25453164.html > Sent from the MyFaces - Users mailing list archive at Nabble.com. > >

