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?