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,040,783
  • 362
  • 3,548
  • 3,513
Peter Penzov
  • 2,352
  • 100
  • 358
  • 675

0 Answers0