dev@javaserverfaces.java.net

Re: commandLink not working

From: Jan-Kees van Andel <jankeesvanandel_at_gmail.com>
Date: Thu, 14 Aug 2008 23:13:57 +0200

But what happens? This HTML snippet doesn't provide much debugging
information.

Do you see script errors? Is there a page reload (just look for a progress
bar in your browser)?

Regards,

Jan-Kees

Btw. Question for the mailing list. I see those ugly colons in the ID
attributes. Are there plans to make this separator configurable? It is quite
a limitation when using CSS, which is already limited by itself, considering
cross browser issues.


2008/8/14 jvnk <nagendra.jalapati_at_philips.com>

>
> I am using myfaces 1.1.5 on weblogic platform 10.2
>
> <faces-config>
>
> <application>
> <locale-config>
> <default-locale>en</default-locale>
> </locale-config>
> </application>
>
> <factory>
> <application-factory>
>
> org.apache.beehive.netui.pageflow.faces.PageFlowApplicationFactory
> </application-factory>
> </factory>
>
> <managed-bean>
> <managed-bean-name>subSearchBean</managed-bean-name>
>
> <managed-bean-class>com.cust.portal.jsfbean.SubSearch</managed-bean-class>
> <managed-bean-scope>session</managed-bean-scope>
> </managed-bean>
>
> <navigation-rule>
> <from-view-id>
> /portlets/search/searchResults.jsp
> </from-view-id>
> <navigation-case>
> <from-outcome>SearchResults</from-outcome>
> <to-view-id>
> /portlets/search/quickSearch.jsp
> </to-view-id>
> </navigation-case>
> </navigation-rule>
>
> </faces-config>
>
> Action method in Managed Bean
>
> public String keySubDetails() {
> System.out.println("##@## called keySubDetails action
> method");
> return "SearchResults";
> }
>
> Below is the generated html code
>
> <tr><td>
> <input id="srchrsltsForm:srchrslts:0:quickSearch_2_idJsp3"
> name="srchrsltsForm:srchrslts:0:quickSearch_2_idJsp3" type="submit" value="
> Go "
>
> onclick="clear_srchrsltsForm();document.forms['srchrsltsForm'].elements['autoScroll'].value=getScrolling();"
> /> # Franklin,Benjamin </td><td>1414 some st &lt;br&gt;Manchester,NH
> 07054</td><td>Pending Deactivation</td><td>(813)
> 621-6501</td><td>9000767324
> </td></tr>
>
> Thanks
>
>
>
> jvnk wrote:
> >
> > Hello Friends,
> >
> > I have problems using commandLink. Below is the code!! I tried all the
> > possible ways but none works, expect when I changed commandLink to
> > commandButton
> >
> > <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t" %>
> > <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
> > <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
> >
> > <f:view>
> > <h:form id="srchrsltsForm">
> > <h:commandButton id="cl1" value="Test Param1"
> > action="#{subSearchBean.keySubDetails}">
> > <f:param name="subscriptionID" value="12345B" />
> > </h:commandButton>
> > <br><br>
> > <t:commandLink id="cl2" action="#{subSearchBean.keySubDetails}">
> > <h:outputText value="Tom Link"/>
> > </t:commandLink>
> > <br><br>
> > <h:commandLink id="cl21" action="#{subSearchBean.keySubDetails}">
> > <h:outputText value="My Link"/>
> > </h:commandLink>
> > <br><bR>
> > <h:commandLink id="c21" value="My Link 2"
> > action="#{subSearchBean.keySubDetails}"/>
> > <br><bR>
> > <h:commandLink id="c22" value="My Link 2"
> > action="#{subSearchBean.keySubDetails}">My Link 3</h:commandLink>
> >
> > </h:form>
> > </f:view>
> >
> > Thanks,
> > Nag
> >
>
> --
> View this message in context:
> http://www.nabble.com/commandLink-not-working-tp18987603p18989296.html
> Sent from the javaserverfaces dev mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_javaserverfaces.dev.java.net
> For additional commands, e-mail: dev-help_at_javaserverfaces.dev.java.net
>
>