Page buttons not appearing

The page buttons on my site don't appear when I publish it. I'm talking about the "Home", "About Me", and "Contact" buttons for example.  It's published to a folder... Does anyone know what's going on?

For each page in question go to the Inspector/Page/Page pane and make sure you have the option to include the page and display the navbar checked:
OT

Similar Messages

  • The edit JSP page does not appear...

    Hi!
    I make a simple JSF application, I would like to show a DB table in a h:dataTable component and edit a given row after click, but the edit JSP page does not appear. I click the on link in the table, but the list is loaded again and not the edit page...:(
    (no exception in application server console)
    Please help me!
    my code:
    **************************************** listmydata.jsp***************************
                   <h:dataTable
                             value="#{myBean.myDataList}"
                             var="myDataItem"
                             binding="#{myBean.myDataTable}"
                   >
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Ajdi"/>
                             </f:facet>
                             <h:commandLink action="#{myBean.editMyData}">
                                  <h:outputText value="#{myDataItem.id}"/>
                             </h:commandLink>
                        </h:column>
    ********************************* MyBean.java *******************************
    package bean;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.html.HtmlDataTable;
    import javax.faces.context.FacesContext;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import wrapper.MyData;
    public class MyBean {
         private List myDataList;
         private HtmlDataTable myDataTable;
         private MyData myDataItem;
         protected Connection Conn;
         // *********************** actions ***********************
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
         public String saveMyData() {
              try {
                   updateDataInDB();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              return "listmydata";
         // *********************** setter ***********************
         public void setMyDataList(List myDataList) {
              this.myDataList = myDataList;
         public void setMyDataTable(HtmlDataTable myDataTable) {
              this.myDataTable = myDataTable;
         public void setMyDataItem(MyData myDataItem) {
              this.myDataItem = myDataItem;
         // *********************** getter ***********************
         public List getMyDataList() {
              if (myDataList == null || FacesContext.getCurrentInstance().getRenderResponse()) {
                   loadMyDataList();
              return myDataList;
         public HtmlDataTable getMyDataTable() {
              return myDataTable;
         public MyData getMyDataItem() {
              return myDataItem;
         // *********************** others ***********************
         public void loadMyDataList() {
              try {
                   getDataFromDB();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
         void getDataFromDB() throws NamingException, SQLException {
              myDataList = new ArrayList();
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement("SELECT id, name, value FROM BEA_JSF_SAMPLE");
              PreStat.execute();
              java.sql.ResultSet Rs = PreStat.getResultSet();
              while(Rs.next()) {
                   MyData OneRecord = new MyData();
                   OneRecord.setId(Rs.getLong(1));
                   OneRecord.setName(Rs.getString(2));
                   OneRecord.setValue(Rs.getString(3));
                   myDataList.add(OneRecord);
         void updateDataInDB() throws SQLException, NamingException {
              String sql = new String("UPDATE BEA_JSF_SAMPLE SET name=?,value=? WHERE id=?");
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement(sql);
              PreStat.setString(1,myDataItem.getName());
              PreStat.setString(2,myDataItem.getValue());
              PreStat.setLong(3,myDataItem.getId().longValue());
              PreStat.execute();
              ownGetConnection().commit();
         Connection ownGetConnection() throws SQLException, NamingException {
              if (Conn == null) {
                   InitialContext IniCtx = new InitialContext();
                   DataSource Ds = (DataSource)IniCtx.lookup("JDBCConnectToLocalhost_CRS");
                   Conn = Ds.getConnection();
              return Conn;
    ******************************* editmydata.jsp *****************************
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
    <body>
    <f:view>
    <h:form>
         <h:panelGrid columns="2">
              <h:outputText value="Name"/>
              <h:inputText id="name" value="#{myBean.myDataItem.name}"/>
              <h:outputText value="Value"/>
              <h:inputText id="value" value="#{myBean.myDataItem.value}"/>
         </h:panelGrid>
         <h:commandButton action="#{myBean.saveMyData}" value="Save"/>
    </h:form>
    </f:view>
    </body>
    </html>

    I have put his lines in the faces-config.xml and now it works:
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>editmydata</from-outcome>
                   <to-view-id>editmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>listmydata</from-outcome>
                   <to-view-id>listmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    I don't understand, that I define the next JSP page in the bean java file, which must be shown, but I must define this in the faces-config.xml as well.
    for example:
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
    is it right or Do I make a mistake somewhere?

  • Excise Invoice Tab Page/ Document Info  Tab Page is not appearing in MIGO

    Dear Friend
    For a particular job work PO , with account assignment category F & item category L, non valuaated material, when we are doing migo, excise invoice tab page/ Document Info tab page is not appearing in document header. From The said tab page we can select the challan.
    In J1ID, I have maintained Vendor PAN number and also material chpter id combination.
    Thanks
    Chandra

    Hi
    I maintained material chapter Id combination & vendor Excise Details. We do not maintain any plant -vendor combination. This is a non valuated material with material type unbw. Do I need to maintain cenvat determination tab for this material?
    Thanks
    Chandra

  • Buttons not appearing clearly upon output

    I have created menu buttons (with highlight) that in turn link to the relevant movie file.
    When outputted to DVD these buttons appear blurry and unclear.
    Why are the buttons not appearing in a crisp, clean state when I have outputted them?

    Which version of DVD SP are you using? Are you
    making these over video menus? What size and color
    of fonts/background? They can all play into what is
    happening, usually 20pt + sans serif works best, but
    the text in DVD SP can often leave things to be
    desired from time to time - where are you previewing
    the buttons?
    Thanks for your reply.
    The vesrion Im using is DV Studio Pro 3. The up state color of the buttons are black and over is red. The font size is 13pt Arial Black.
    I have outputted the DVD itself, so I view it through TV.
    Am I on the right track?
    Thanks again.

  • Itunes 11.1.5 synchronization page does not appear when iphone is connected to imac !

    Today I updated itunes version 11.1.5  but when I connected my iphone 5c , the synchronisation page did not appear.  I could not synchronise my phone right away from the page that it used to appear once the phone is connected.
    i can see iphone appearing on the top right hand side tab  (where you disconnect the phone)
    I can see my phone from the file tab- Synch "Amani's iphone" where I synchronised the phone.
    But I want to see all the info about my phone, and I rreally need  this page back, is it called the synchronisation page? I am not sure
    Please help. I am so annoyed with this,
    my phone software is IOS7.1
    my imac peratin system is : 10.6.8 Snow Leopard

    Hello 51kFred,
    Here is a resource that should help resolve the iPhone not showing in iTunes.
    iPhone not appearing in iTunes
    http://www.apple.com/support/iphone/assistant/itunes/#section_1
    All the best,
    Sterling

  • ADF Buttons not appearing correctly

    I've tried researching this problem and from what I've found it has said if we are using JDK version 1.4 and headless = true then we shouldn't have this problem. When running our application some of our ADF buttons will appear correctly and others will not.
    When I look in our
    application-deployments/../temp/adf/images/cache/en/
    directory I can see the images of the buttons that appear correctly, but if I navigate to another page with different buttons I would then expect to see those images being creating in that folder but there are not. If anyone has any insight on this problem it would be a big help. Thanks.

    Nothing leaps to mind that affected downloadable fonts in Firefox 34... but there are hundreds of changes in each version so I can't rule it out.
    Just to go back to basics for a moment...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • Next page button not working

    Post Author: Mike Norwood
    CA Forum: General
    I use VB to generate a report using the Crystal Reports Activex Control Version 8.0.0.4.  When the report appears on the screen the next page button does not change the page.  When the last page button is press the report show 1 of 33 at the top of the screen.  The next button still does not work.
    Thanks in Advance
    Michael

    Post Author: livez
    CA Forum: Crystal Reports
    Solved it , I had to pass reportdocument to viewer in Page_Init instead of Page_Load

  • Buttons not appearing after exporting to Interactive PDF

    I created buttons on my master page in InDesign with the event "on click" and actions "go to first page", "go to last page", "go to previous page", and "go to next page". Then I applied my master page to all the pages in my document. On certain pages I override the item on the master page and gave the button a different action (go to text anchor). Then I exported to Adobe PDF (Interactive). When I view the PDF, most of the Master Page buttons do not appear. This doesn't happen every time. I have created documents that work with this setup, but this one document will not work properly. Any suggestions?

    Try exporting IDML, Open IDML, Export from new doc

  • Hit Counter button not appearing when I upload the web site.

    I am using iWeb version 3.0.4 on OS 10.6.8, and on the Welcome page, I added the Hit Counter button.  When I upload the web site, the Hit Counter button does not appear.  Anyone have any solutions as to why it isn't appearing?  Thanks...
    Peggy Hinsman
    Eugene School District 4j
    Eugene, Oregon

    Where are you hosting the site? The counter will not work on ftp servers, only on MobileMe.  If you are hosting on MobileMe increase the footer height considerable and publish. If the counter then appears you can move it closer to the body/footer border and reduce the footer height.
    If you're not on MobileMe consider a 3rd party counter like StatCounter.  This tutorial describes how to add it to iWeb pages: #13 - Adding a StatCounter as an HTML Snippet
    If you're on MobileMe you know that MMe will be discontinued on June 30 of next year.  This may be of interest: #23 - Life After MobileMe
    OT

  • Reset password button not appearing

    Hi, I am running OSX Mavericks 10.9.4 on a Macbook Pro.  I am logged on as administrator and want to reset the password for a user on my computer.  However, the "reset password" button does not appear for this user.  What can I do?
    Thanks a lot
    Mike

    Cleeve33 it sounds like you have a volume license for Dreamweaver.  The following information should help you with downloading the software.
    A video demonstrating how to download software in LWS is available at https://my.adobe.acrobat.com/esddownload/.
    TLP customers who've purchased TLP 5.0 licenses have access to the software download for that license at no extra cost. That is, if the software is available as a download.
    CLP customers have access to downloads for any licenses purchased by their Deploy-to ID, providing that the software is available as a download.
    FLP customers must purchase any media they require.
    Log in to the LWS at https://licensing.adobe.com.
    Choose Licenses > Downloads.
    Select the End User or Deploy-To ID account that contains the software from the End User/Deploy-To ID list. If you do not know which account the software is in, see I can't find which account an order is in for more information.
    Click Search.
    To filter the list of products, select items from the Product Name, Version, Platform, Language, or App Server lists. Ensure that you are using the name of the product as it appears on the order. For example, Design Premium in CS4 became Adobe Design Premium in CS5.
    Follow the instructions on the download page.
    Beyond that you might also want to review Use the Adobe Volume Licensing site - http://helpx.adobe.com/x-productkb/policy-pricing/volume-licensing-site.html

  • Flash button not appearing

    I've added a flash button to my website and uploaded it to
    the home file, but it's not appearing online. Any
    suggestions?

    I just purchased some software that allows you to make flash
    buttons. I made a button, and thought I had it uploaded to my page,
    but it doesn't seem to be working either. I uploaded some button
    designs from Adobe and I see them when I go to make or edit a
    button, but I don't see the one that I thought was upload from the
    new software. What software are you using and how did you upload
    your buttton?

  • Page Numbers Not Appearing in Data Merge Document?

    Hello, hopefully someone can help. I am pretty new to InDesign but learning a lot.  I am creating a member directory of about 200 pages (about 2800 records merged from .csv to InDesign 6). Everything is working fine with the merge, except generating the page numbers.  I tried adding page number at the bottom of the page to the master BEFORE merging. But if I do that, it greys out the "multiple records per page" option when trying to perform the Data Merge (using "Create merged Document").  So, I tried adding the page number to the A-master AFTER creating the merged document, but the page number is not appearing on any of the pages.  There must be a way to do this, can anyone help?
    (FYI - to generate the auto page numbers, I am going to the Type-Insert Special Character-Markers-Current Page Number, and placing that within a text field at the bottom of the page.  Thanks in advance. )

    Here is a screen shot.  I have placed it on the A-Master.  See Screenshot#1.  Screenshot #2 shows Page 70 with no page number (and no other pages have page numbers that I can see.  Thanks for your advice on fixing....
    Sorry, here is screenshot #2, (with personal details redacted but the records are there behind the grey boxes):

  • New tabs do not include the history icons as before.The option to show images on a page does not appear in upper right of page.

    The solution in the FAQ's is clear, but the small icon that is supposed to be showing in the upper right of a new Tab page are not showing up so that I can get the images to appear. I recently installed Java 7 and after that they had disappeared. Can you help me get them back? They are very helpful.

    You can reset the browser.newtab.url pref on the <b>about:config</b> page via the right-click context menu to the default value.
    You can open the <b>about:config</b> page via the location bar and you can accept the warning and click "I'll be careful" to continue
    You can use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).

  • Home page button not working right on my iPad 2

    Does anyone has problems with the home page button?

    Hi everyone,
    I also had the same problem like less than a month after I purchased my iPad 2. I used to think that it was due to the iOS update to 4.3.x, as I got mine out of the box with the version prior to that, and didn't have problems before I updated.
    However, it could also be that the home button pad had accummulated oil/dirt from our thumbs, which get in the way of it working properly.
    Here's what I did:
    1. Turned off my iPad2.
    2. Wet my thumb with alcohol (not too wet, say a drop or two), and pressed down on the home button and rubbed the alcohol in in a circular motion. The idea is to let the alcohol break down the oil and dirt.
    3. Wiped the home button thoroughly with a clean cloth (i dont recommend tissue or cotton as it might leave residue that could again 'clog' the inside perimeter of the home button.
    Before I did that, my home button was responding in around 1 click out of 20-30 tries. After cleaning, the home button now responds in 9 out of 10 presses.
    Let us know if you try and find that this works for you as well.

  • Page Fragment not appearing in Page Navigation!!

    My project contains a Page Fragment named Logo.jspf which is intended to be displayed on the top of every page in my project.
    I have a Link Action element on Logo.jspf and when clicked it should load Login.jsp only if the user is not loged in, and if the user is already loged in it should load some other page. I aware that I have to add codes in the action listener method in Logo.java.
    As the Page Fragment (in my case that is Logo.jspf) is not appearing in Page Navigaton window it is not possible to add code like following: (Because I cannot visually draw an arrow with name �login� from �Logo.jspf� to �Login.jsp�)
    public String linkAction1_action() {
    return �login�;
    Please anyone help to do this. Thank you very much.

    To forward to a particular page from a servlet we usually use codes similar to the following:
    request.getRequestDispatcher("/Login.jsp").forward(request, response);
    How can I get rhe request object (or the session object) from a bean in a JSC project?
    Any suggestions very much appreciated. Thank you very much.

Maybe you are looking for