[jboss-dev-forums] [Design of JBoss Portal] - Re: Issue with JSF <f:view> tag

vaalati do-not-reply at jboss.com
Fri Mar 9 15:19:10 EST 2007


Hi Stan,
Thanks for help. Actually I had figured that out the hard way just a while ago before I received your reply.

But now I ran into another issue. I wrote a JSF code in which I have a text-field (<h:inputText>) and I want to access the value entered in it in my portlet class which I wrote extending the MyFacesGenericPortlet. So how do I access it?s value? Usually in Servlets we can do this by using the request.getParameter(). Below is my code in which I have the text-field (<h:inputText>). Now how do I access it?s value in my portlet class? 


-----------------------------------------------------------------
<%@ page language="java" session="true" %>
<%@ page import = "javax.portlet.PortletSession" %>
 
<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="/WEB-INF/tld/portlet.tld" prefix="portlet" %>
<f:loadBundle basename="altair.adm.login.messages" var="msg"/>
<portlet:defineObjects/>
<portlet:actionURL var="loginAction">
        <portlet:param name="command" value="doLogin" />
</portlet:actionURL>



                ADM Login


  <f:view>
    
      <h:form>
        <h:panelGrid columns="2">
          <h:outputText  value="#{msg.user_id_tag}" />
            <h:inputText  value="" required="true" id="ADM_USER_ID" />                
            <h:commandButton  action="#{loginAction}"  
                value="#{msg.login_button_tag}" id="ADM_LOGIN_BUTTON"/>       
        </h:panelGrid>
        
      </h:form>
    
  </f:view>



-----------------------------------------------------------------


Thanks,
Vijay

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4026749#4026749

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4026749



More information about the jboss-dev-forums mailing list