How to make a header for all pages

hi all
i'm new to jsf
i use jdeveloper 10
i want to use a toolbar and a menubar as a header for all my pages
i want to use it as a user control or a library that i call from any page
can i put my components in a tag library
or how i behave
thnks for reading
George Gameal
junior java developer
Edited by: user10717543 on Dec 16, 2008 11:04 PM

George,
Is JDev 11 a possibility? There is support for page templates in version 11?
John

Similar Messages

  • How do i make letter heads on all pages

    How do I make letter heads on all pages in pages?

    In the inspector, click the first icon, "Document.'
    In that window, check 'Headers' and or 'Footers.'
    Clicking in the area near the top (or bottom) will put the cursor in a box where you can create the page headers or footers.
    Headers and Footers can appear:
    On all pages,
    All except the first page, and
    Differently on right and left pages.
    You can insert text boxes into the header and footer fields as well, and arrange fonts and alignments for each text box separately.
    You can past images into the headers and footers. Drag the image into the page. Cut it. Click the header or footer box. Paste it. Resize it.
    Good luck, and have fun!

  • How to repeat row header in all pages in Financial Reporting?

    Hi,
    I have created a simple Financial Report with landscape mode, I could not able to view the row header in second page. Please help me out , how to repeat row header in all pages?
    Edited by: Awesome on Dec 13, 2012 2:04 PM

    Hi,
    Refer following link which states how to change the Page Setup setting (just an addition to above poster's explanation):-
    http://docs.oracle.com/cd/E12825_01/epm.111/fr_user/frameset.htm?1900.html
    Regards,
    Edited by: 918547 on Dec 14, 2012 6:17 PM

  • Please tell me how can I put Bookmarks for all pages opened in Firefox.There was an option ("bookmark all pages") which vanished.

    Please tell me how can I put Bookmarks for all pages opened in Firefox.There was an option ("bookmark all pages") which vanished.

    It moved to tab contextual menu :
    Right-click on any tab -> Mark all tabs (or something close, my FF is not in english).

  • How to set the header for second page

    Hello all,
    I'm trying to set different header for first page and page number should starts from second page.
    Below is the sample code to set the header for each and every page.
    DECLARE
    hApplication OLE2.OBJ_TYPE;
    hWindow OLE2.OBJ_TYPE;
    hPane OLE2.OBJ_TYPE;
    hView OLE2.OBJ_TYPE;
    hDocuments OLE2.OBJ_TYPE;
    hDocument OLE2.OBJ_TYPE;
    hSelection OLE2.OBJ_TYPE;
    hParagraphFormat OLE2.OBJ_TYPE;
    hRange OLE2.OBJ_TYPE;
    hFields OLE2.OBJ_TYPE;
    hFont OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    wdAlignParagraphLeft CONSTANT number(3) := 0;
    wdAlignParagraphCenter CONSTANT number(3) := 1;
    wdAlignParagraphRight CONSTANT number(3) := 2;
    wdSeekCurrentPageHeader CONSTANT number(3) := 9;
    wdSeekCurrentPageFooter CONSTANT number(3) := 10;
    wdSeekMainDocument CONSTANT number(3) := 0;
    wdFieldPage CONSTANT number(3) := 33;
    wdFieldNumPages CONSTANT number(3) := 26;
    wdPageBreak CONSTANT number(3) := 7;
    wdStory CONSTANT number(3) := 6;
    myTab CONSTANT varchar2(1) := chr(9);
    myBlue CONSTANT number(8) := 16711680; --FF0000
    myGreen CONSTANT number(8) := 65280; --00FF00
    myRed CONSTANT number(8) := 255; --0000FF
    myDkGreen CONSTANT number(8) := 32768; --008000
    myBlack CONSTANT number(8) := 0; --000000
    myText varchar2(2000);
    BEGIN
    hApplication:=OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(hApplication, 'Visible', 1);
    hDocuments := OLE2.GET_OBJ_PROPERTY(hApplication, 'Documents');
    hDocument := OLE2.INVOKE_OBJ(hDocuments, 'Add');
    -------- Create Header and Footer --------
    hWindow := OLE2.GET_OBJ_PROPERTY(hApplication, 'ActiveWindow');
    hPane := OLE2.GET_OBJ_PROPERTY(hWindow, 'ActivePane' );
    hView := OLE2.GET_OBJ_PROPERTY(hPane, 'View' );
    ---- Header Section ---
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekCurrentPageHeader);
    hSelection := OLE2.GET_OBJ_PROPERTY(hApplication, 'Selection');
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Times New Roman');
    OLE2.SET_PROPERTY(hFont, 'Size', 10);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', MyBlue );
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphCenter);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'This is a');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    OLE2.SET_PROPERTY(hFont, 'Size', 16);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', MyDkGreen );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Test Header');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    ---- Footer Section ----
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekCurrentPageFooter);
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphCenter);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    hFields := OLE2.GET_OBJ_PROPERTY(hSelection, 'Fields');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Page ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    hRange := OLE2.GET_OBJ_PROPERTY(hSelection, 'Range');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG_OBJ(args, hRange);
    OLE2.ADD_ARG(args, wdFieldPage);
    OLE2.INVOKE(hFields, 'Add', args );
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, ' of ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    hRange := OLE2.GET_OBJ_PROPERTY(hSelection, 'Range');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG_OBJ(args, hRange);
    OLE2.ADD_ARG(args, wdFieldNumPages);
    OLE2.INVOKE(hFields, 'Add', args );
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(hRange);
    OLE2.RELEASE_OBJ(hFields);
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekMainDocument);
    OLE2.RELEASE_OBJ(hView);
    OLE2.RELEASE_OBJ(hPane);
    OLE2.RELEASE_OBJ(hWindow);
    -------- Insert Text --------
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Arial');
    OLE2.SET_PROPERTY(hFont, 'Size', 12);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE );
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    myText := myTab || 'This text is on the ';
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, myText);
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', myRed);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'first ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'page.');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, wdPageBreak);
    OLE2.INVOKE(hSelection, 'InsertBreak', args);
    OLE2.DESTROY_ARGLIST(args);
    ----page 2
    myText := myTab || 'This text is on the ';
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, myText );
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlue);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'second ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'page.');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    ---- go to the top of the first page
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, wdStory);
    OLE2.INVOKE(hSelection, 'HomeKey', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(hFont);
    OLE2.RELEASE_OBJ(hSelection);
    OLE2.RELEASE_OBJ(hDocument);
    OLE2.RELEASE_OBJ(hDocuments);
    OLE2.RELEASE_OBJ(hApplication);
    END;
    Please help me out
    Thanks,
    Bhavana

    Click on --
    Edit link for Page> Click "Edit Default" link on Banner >
    Under the "Banner Links"
    provide value something like this:
    Label = Help
    URL = /pls/portal30/docs/myhelp.html
    Icon = U can upload any icon here.
    For Application Components = See the Second Last tab on "Edit Component".
    Thanx,
    Chetan.

  • How to change the header in all pages at once?

    I'm new to iWeb and can't figure out how to change the headers of all pages without having to go through and do it to every page. There should be a way, but is this a feature iWeb doesn't have?

    Hi,
    Refer following link which states how to change the Page Setup setting (just an addition to above poster's explanation):-
    http://docs.oracle.com/cd/E12825_01/epm.111/fr_user/frameset.htm?1900.html
    Regards,
    Edited by: 918547 on Dec 14, 2012 6:17 PM

  • Header for all pages

    I am new to CSS, how do I use the same header and navigation
    bar menu for all my web pages. Here is the CSS code:
    /* global */
    html{height: 100%;}
    body
    { font-family: arial, sans-serif;
    padding: 0px;
    margin: 0px;
    font-size: .78em;
    p
    { margin: 0px;
    padding: 0px 0px 16px 0px;
    line-height: 1.7em;
    h1
    { font-family: serif;
    font-size: 108%;
    letter-spacing: .1em;
    h2
    { margin: 0px;
    padding: 0px 0px 4px 0px;
    font-size: 100%;
    letter-spacing: .1em;
    font-weight: normal;
    text-decoration: underline;
    img{border: 0px;}
    a{outline: none;}
    /* image positioning - left, right and center */
    .left
    { float: left;
    padding: 0px 8px 0px 0px;
    .right
    { float: right;
    padding: 0px 0px 0px 8px;
    .center
    { display: block;
    text-align: center;
    margin: 0 auto;
    /* block quote */
    blockquote
    { margin: 20px 0px 20px 0px;
    padding: 10px 20px 0px 20px;
    border-left: 8px solid;
    /* unordered list */
    ul
    { margin: 8px 0px 0px 16px;
    padding: 0px;
    ul li
    { list-style-type: square;
    margin: 0px 0px 11px 0px;
    padding: 0px;
    /* ordered list */
    ol
    { margin: 8px 0px 0px 24px;
    padding: 0px;
    ol li
    { margin: 0px 0px 11px 0px;
    padding: 0px;
    /* margin lefts / margin rights - to centre content */
    #main, #links, #footer, #logo, #menu, #content
    { margin-left: auto;
    margin-right: auto;
    /* main container */
    #main{width: 850px}
    /* header */
    #header
    { width: 100%;
    height: 87px;
    /* logo */
    #logo
    padding: 1;
    float: left;
    margin: -25px 15px 0px 15px;
    #address
    { padding: 11px 17px 0px 14px;
    float: right;
    text-align: right;
    #address p
    { padding: 0px;
    margin: 0px;
    #logo h1
    { font-family: verdana, arial, sans-serif;
    margin: 0px;
    padding: 18px 0px 0px 0px;
    font-size: 160%;
    letter-spacing: .3em;
    #logo h2
    { font-family: verdana, arial, sans-serif;
    margin: 0px;
    padding: 5px 0px 0px 0px;
    font-size: 100%;
    letter-spacing: .2em;
    /* navigation menu */
    #menu{margin: 0px 15px 0px 15px;}
    #menu ul
    { height: 38px;
    margin: 0px auto;
    #menu li
    float: right;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    list-style: none;
    #menu li a, #menu li a#selected, #menu li a:hover
    { font-family: verdana, arial, sans-serif;
    display: block;
    float: left;
    height: 7px;
    text-decoration: none;
    margin: 5px 12px 0px 4px;
    padding: 7px;
    text-transform: uppercase;
    font-size: 80%;
    #links
    { float: right;
    width: 100px;
    text-align: right;
    padding: 0px 18px 0px 0px;
    /* sidebars */
    .sidebar
    { float: left;
    width: 194px;
    padding: 16px 15px 15px 15px;
    /* sidebar items / links */
    .sidebaritem
    { text-align: left;
    width: 194px;
    float: left;
    margin: 0px 0px 11px 0px;
    padding: 0px 0px 0px 0px;
    .sidebaritem h1, .sidebaritem h2, .sidebaritem p{margin: 0px
    10px 0px 10px}
    .sidebaritem h1
    { font-weight: normal; padding: 8px 0px 16px 0px;
    text-transform: uppercase;
    .sidebaritem p
    { line-height: 16px;
    padding: 0px 0px 8px 0px;
    .sidebaritem a, .sidebaritem a:hover
    { padding: 0px 0px 2px 14px;
    text-decoration: none;
    .sbilinks ul{margin: 0px 0px 18px 10px;}
    .sbilinks li
    { list-style: none;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 5px 0px;
    .sbilinks li a, .sbilinks li a:hover
    { height: 16px;
    text-decoration: none;
    width: 149px;
    /* page content (centre) */
    #content
    { text-align: justify;
    width: 384px;
    padding: 11px 9px 15px 9px;
    margin-top: 16px;
    float: left;
    #content h1
    { font-family: arial, sans-serif;
    margin: 5px 0px 12px 0px;
    font-size: 128%;
    font-weight: normal;
    text-transform: uppercase;
    #content a, #content a:hover
    { padding: 0px 0px 2px 0px;
    text-decoration: none;
    /* footer */
    #footer
    { height: 44px;
    padding: 18px 0px 4px 0px;
    font-size: 80%;
    text-transform: uppercase;
    font-family: verdana, arial, sans-serif;
    clear: both;
    text-align: center;
    border-top: 2px solid;
    margin: 4px 15px 4px 15px;
    #footer a
    { text-decoration: none;
    padding: 0px 0px 2px 0px;
    border-bottom: 1px dashed;
    #footer a:hover
    { text-decoration: none;
    padding: 0px 0px 2px 0px;
    border-bottom: 1px solid;
    /* Based on Nifty Corners: rounded corners without images */
    /* By Alessandro Fulciniti */
    http://www.html.it/articoli/nifty/index.html
    .rtop, .rbottom, .mtop, .mbottom{display: block;}
    .rtop .r1, .rtop .r2, .rtop .r3, .rtop .r4,
    .rbottom .r1, .rbottom .r2, .rbottom .r3, .rbottom .r4,
    .mtop .m1, .mtop .m2, .mtop .m3, .mtop .m4,
    .mbottom .m1, .mbottom .m2, .mbottom .m3, .mbottom .m4
    { display: block;
    height: 1px;
    overflow: hidden;
    .r1, .m1{margin: 0 5px}
    .r2, .m2{margin: 0 3px}
    .r3, .m3{margin: 0 2px}
    .rtop .r4, .rbottom .r4, .mtop .m4, .mbottom .m4
    { margin: 0 1px;
    height: 2px

    On Fri, 26 Oct 2007 12:44:42 +0000 (UTC), "beau123"
    <[email protected]> wrote:
    >I am new to CSS, how do I use the same header and
    navigation bar menu for all
    >my web pages. Here is the CSS code:
    >
    Not really anything to do with css.
    If it's a small site - you could use templates - have all the
    common
    code in the template.
    But rather better to use service side includes ( SSI ) to
    contain the
    common items such as top banners, navigation, footers etc
    use Dw's help facility - search for Templates and server side
    include
    ~Malcolm N....
    ~

  • Loop in smartform - how to make values valid in all pages

    Hi All.
    I have a smartforms with several pages (9). I must print these 9 pages once for each line in the internal table ITAB. When I put a loop in the first page, the data under that loop is printed correctly, but every text node outside the loop always prints the last line of ITAB.
    Do any of you know how to make the data in the loop valid throughout the other pages?
    any help will be welcome.
    thanks,
    Hermes.

    I got it. The main window must be the first one in the first page. The loop must be inside the main window, and bellow the loop there must be a page-break command.

  • How to atomate caching options for all pages?

    Hi,
    Customer request:
    Does there exist a means of automating caching option for all the pages of a page group or a portal?
    Thanks a lot for your kind help.
    Best regards.
    Jean-Francois

    Depends on the view technology you´re using for JSF.
    If you're using JSP, use jsp:include.
    If you're using Facelets, use ui:include.
    Consult the documentation of the view technology used for details.

  • How to make fix navigation for single page w/ horizontal slider

    I've created a horizontal sliding page with the use of anchor but i cant fix my navigation bar, can someone help me how to make it?
    like this site http://www.selvagreenng.com/#abt
    thank you very much

    any help please? i will appreciate it a lot.

  • Web Interface - how to make the heading of the page bold and underlined

    Hi EXperts,
    I have created web interface. For this I have done like this:
    1) Types bps_wb transaction code
    2) I have clicked on Web Interface --> Create
    3) I have checked check boxes to create save pushbutton, exit button etc.
    4) Then I clicked on create button
    5) After that I generated the application
    6) Then I clicked on Display Perview button. I can see that Page 1 is getting displayed on top left side.
    7) I want to align this header text 'Page 1' in central position in page. I also want to underline it. How I can do so?
    Thanks

    Found ans on own...

  • How to make extension available for all users in a multi user environment

    Hi,
    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Thanks

    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Dreamweaver had this capability many releases ago, but it has been dropped, so it's no longer available.
    Regards,
    Randy Edmunds
    Dreamweaver Development
    Adobe Systems, Inc.

  • Print the logo for all pages

    Hi
    How to print the logo for all pages in xml report
    please provide the tags also

    Hi,
    create a Header and footer section and paste your logo inside and use the tag <?template:header?> before header and <?end template ?> after header section.
    Thanks & Regards
    Srikkanth

  • How to make tiny numbers for footnotes in pages?

    I cant figure out how to make the number small in pages on my Ipad 2. The app is up to date and aswell is the software, iOS 5.1 but I can't figure out how to make the number tiny and move up to the left hand corn of the letter. Example, the number should like like the '2' in h2o but I don't know how, please help.

    Hi vnessar
    When you place the insertion point where you want your footnote referenced (tap, hold, release) and select Insert  > Footnote, it automatically places the superscript number for your footnote there and takes you to the bottom of the page in a Footnote field with the reference number already filled in.
    If you add another, (tap, hold, release - which brings up the "Select | Select All | Paste | Insert" menu) it will become Footnote 2 and so on.
    See Insert footnotes or endnotes
    In step 2. Tap >, tap Insert, and then tap Footnote.  The triangle is the "more button". Just ignore that and tap Insert and Footnote.
    Does that work for you?
    ivan

  • How do I save my CMYK font settings & make it avaliable for all files ?

    How do I save my CMYK font settings & make it avaliable for all files ? (adobe PS indesign file)

    Could you explain what you want to do a little bit better? CMYK and fonts aren't really related to each other.
    Also, are you using Photoshop or InDesign?

Maybe you are looking for

  • Photoshop CS5 crashes when opening EPS file

    I am having trouble opening an EPS file in Photoshop CS5. Previously, PS wasn't opening at all, but I cleaned up my fonts and I can now open some files. This particular EPS file, however, causes the application to crash every time. I recently had sim

  • Invisible cursor in text form field with black background

    The text input cursor (the vertical line that blinks) isn't visible when typing in a textarea form field that has a black background. In other browsers, the cursor alternates black and white so you can see it when it's white. But in Safari, I don't s

  • Connection with MS -SQL server Database

    Hi Experts, We are new with Oracle SES. We have created one table in MS SQL server 2005 in testing database called as Northwind, table is EMPdate with adding required column name as "URL","KEY","CONTENT","LASTMODIFIEDDATE","LANG". Now we create datab

  • My iMac yosemite does not let thunderbird update

    I don't think i had this problem before yosemite

  • There is no Sim card in the iPhone you are trying to activate...

    I recently called AT&T to have a out of contract iPhone 3GS using the IMEI #. I followed the instructions to unlock the iPhone (backup and restore), and after restore it should then be factory unlocked. BUT that's not the case, I get a message saying