Hi. I have a project based on Tobago 2.0 alpha 3 + Tomcat 7.0.34 + MyFaces Core 
2.1.14 and it works fine. Now I need one page based on core jsf components 
only. I try to add a page like below in the project

<f:view xmlns="http://www.w3.org/1999/xhtml";   
           xmlns:h="http://java.sun.com/jsf/html";
           xmlns:f="http://java.sun.com/jsf/core";
           renderKitId=”HTML_BASIC”>

    <html>
        <hody>
            <h:form>
                <h:inputText value=”#{mybean.number}”/>
                <h:commandButton value=”submit” action=”#{mybean.store}”/>
            <h:form>
        </hody>
    <html>
</f:view>

Page is rendered but values are not submitted. Is this a bug or I’m doing 
something wrong? Thanks.

Reply via email to