0

I want to add redirection link into text. I tried this

JSF page

Learn <h:form><h:commandLink value="more" actionListener="#{pageredirect.redirectToPartnerForm()}"/></h:form> about channel and alliance partner

JSF Bean

@Named
@ViewScoped
public class Pageredirect implements Serializable
{
    public void redirectToPartnerForm() throws IOException
    {
        FacesContext.getCurrentInstance().getExternalContext().redirect("partner_opportunity_profile.xhtml");
    }
}

This is the visual result:

Learn
more
about channel and alliance partner opportunities.

I don't understand why the text "more" is on new line. How I can fix this?

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808

0 Answers0