We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i dont know what my mistakes, i am adding add tab in navigation menu, but when i click the link, it didnt go nowhere, here is my code :
quicklink.jsp <% // quicklink.jsp - Link pages (tiles definition) %> <%@taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %> <%@taglib uri="http://www.esri.com/tags-gpt" prefix="gpt" %> <% // initialize the page %> <gpt:page id="catalog.quicklink"/> <tiles:insert definition=".gptLayout" flush="false" > <tiles:put name="body" value="/catalog/quicklink/quicklinkBody.jsp"/> </tiles:insert>
quicklinkBody.jsp <% // quicklinkBody.jsp - Links page (JSF body) %>
primaryNavigation.jsp <h:commandLink id="quicklinkHome" action="catalog.quicklink" value="#{gptMsg['catalog.quicklink.home.menuCaption']}" styleClass="#{PageContext.tabStyleMap['catalog.quicklink']}"/>
gpt-faces-config.xml
gpt.properties
catalog.quicklink.home.menuCaption = Links catalog.quicklink.home.caption = Welcome to the Link Page
is any problem with my code?, can somebody tell me?
The text was updated successfully, but these errors were encountered:
Did you get this fixed? I'm having the same issue.
Sorry, something went wrong.
not yet
No branches or pull requests
i dont know what my mistakes, i am adding add tab in navigation menu, but when i click the link, it didnt go nowhere, here is my code :
quicklink.jsp
<% // quicklink.jsp - Link pages (tiles definition) %>
<%@taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@taglib uri="http://www.esri.com/tags-gpt" prefix="gpt" %>
<% // initialize the page %>
<gpt:page id="catalog.quicklink"/>
<tiles:insert definition=".gptLayout" flush="false" >
<tiles:put name="body" value="/catalog/quicklink/quicklinkBody.jsp"/>
</tiles:insert>
quicklinkBody.jsp
<iframe id="quicklinkHome" src="http://www.esri.com" style="overflow-y:auto;overflow-x:hidden" width="100%" frameborder="0" marginheight="0" marginwidth="0" height="100%" > </iframe> <script type="text/javascript"> function resizeIframe() { var height = document.documentElement.clientHeight; height += document.getElementById('quicklinkHome').offsetTop; height -= 20; /* whatever you set your body bottom margin/padding to be */ document.getElementById('quicklinkHome').style.height = height +"px";}; document.getElementById('quicklinkHome').onload = resizeIframe; window.onresize = resizeIframe; </script><% // quicklinkBody.jsp - Links page (JSF body) %>
primaryNavigation.jsp
<h:commandLink
id="quicklinkHome"
action="catalog.quicklink"
value="#{gptMsg['catalog.quicklink.home.menuCaption']}"
styleClass="#{PageContext.tabStyleMap['catalog.quicklink']}"/>
gpt-faces-config.xml
catalog.quicklink /catalog/quicklink/quicklink.jspgpt.properties
quicklink page
catalog.quicklink.home.menuCaption = Links
catalog.quicklink.home.caption = Welcome to the Link Page
is any problem with my code?, can somebody tell me?
The text was updated successfully, but these errors were encountered: