How to add fragment in jsf page using include tag in jdeveloper

Hi all
Can you tell me wat is syntax of using include tag .or how to add fragment in jsf page ..
Edited by: 947228 on Jul 18, 2012 5:01 AM

Hi,
Why do you want to do that?
Check [url https://blogs.oracle.com/jheadstart/entry/avoid_use_of_jspinclude_where]this out before proceeding further.
Btw, always mention your JDev version, clear usecase to get help.
-Arun

Similar Messages

  • How to hide / unhide text baxes on button click in JSF page using javascrip

    Hi,,
    I want to hide/unhide text boxes on a button click.
    How to do it in .jspx page using javascript.

    Hi,
    refer this
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" title="#{lcRes['page.title']}">
         <af:resource type="javascript">
            function hide(evt){
                evt.findComponent('itToHide').setVisible(true);
         </af:resource>
          <af:form id="f1">
            <af:commandButton partialSubmit="true" id="cb1">
                <af:clientListener method="hide" type="action"/>
            </af:commandButton>
            <af:inputText id="itToHide" value="xx" label="this will hide" clientComponent="true"/>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>

  • How to invoke "j_security_check" in jsf page

    Hi,
    with ADF security configure in Jdeveloper11.1.1.2, it automatically generate login.html and error.html for form authentication.
    I found in login.html, the action for form is "j_security_check", and I try to customize login page with jsf page, but don't know how to invoke "j_security_check" in jsf page, there is no more action attribute within af:form and I cannot find the "j_security_check" in commandButton action Expression Build.
    Thanks in advanced.
    Best Regards,
    Bill

    Hi,
    you will have to add the login form to the JSf page wrapped in f:verbatim so it shows as part ofthe JSF page. In JSF 1.2 using f:verbatim shoucl not be require, but by experience, better is.
    If you develop and deploy on WLS, then chapter 30 of the Fusion Developer Guide has a god solution for you to build a login form in JSF completely
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/adding_security.htm#BABDEICH
    This does not require j_security_check at all
    Frank

  • How to add totals for each page in main window

    hi
      i have problem in scripts
      how to add total in first page ending and carry it to second page , at the end of second page again adding total and so on until last page.
    very urgent
    regards
    ratna

    Hi,
    Check these
    http://help.sap.com/saphelp_40b/helpdata/en/d1/8035c3454211d189710000e8322d00/content.htm
    http://membres.lycos.fr/jolyeric/SAP/Note_de_Cours_Ben/Sapscript/SAPscript_Control_Commands.doc
    try to use the command 'summing' along with one text symbol .Keep the if condtion when page changes at that time u dispay the total as ur keeping the total in text symbol it can be dispayed in the next page
    or this is round about way
    loop at <table>.
    call write_form.
    endloop.
    here u declare a variable 'c' and increment it by 1 in each loop. Then u chgeck if the program has started printing second page then u can print the number of records before printing the next page.
    eg :
    data : c type c value '0'.
    loop at <table>.
    c = c + 1.
    call write_form.
    endloop.
    in form:
    check when the next page is being printed, then u can print the number
    of lines 'c'.
    Feel free to revert back.
    --Ragu

  • How can I open a new page (using "Pages") when I already have another page open?  It just keeps reverting to the page I have opened already and won't let me open another one?

    How can I open a new page (using "Pages") when I already have another page open?  It just keeps reverting to the page I have opened already and won't let me open another one?

    To make a new document, go to File > New From Template chooser and choose the type of document you wish to create.
    To add a new page to an existing document go to Insert > Sections > Blank.

  • How to add a watermark in Pages 5.0

    Hello!
    Could anyone please explain to me how to add a watermark in Pages 5.0
    Thank you

    Hi have found the solution. You need go into the View menu and make sure that you have checked the Show Invisibles option. Once you can see the invisibles, you should see a blue line at the top of the "blank" page with a small "document" icon at the right of the line. You need to delete this blue line/icon which will delete the whole page as long as there are no other "invisible items" which may also need to be deleted.
    I did the above and my blank page disappeared from the thumbnails view immediately.

  • How to add an image over another using af:image

    How to add an image over another using af:image
    Thanks,
    Veera

    i have a image which is black strip. i have added that to af:image
    <af:image source="image1" id="image" />
    on the black strip, i need to add company logo.
    how to achieve it.
    Thanks,
    Veera.

  • How to raise a pop-up page using HTMLB

    Hi friends,
       Can anybody tell me how  to raise a pop-up page using HTMLB.But don't use webdynpro.
    I want to set a TextField  on PAGE A,and a button ,when i click the button,
    it raise up a page B,Page B contains a HTMLB tree,when i click the tree node,
    The textfield value in Page A will get the node text.
    waiting for your great help!

    Hi Raven,
    In case of HTMLB you can use javascript to pop up the new page on click of the button.
    onClientClick="popUpMethod();" of button call a java script method popUpMethod(). which will call the other page. below is the code for opening other page as pop up
    function popUpMethod(){
              window.open("T1Report.htm",'_blank',
          " status=yes,toolbar=yes,menubar=yes,location=no, scrollbars=yes ");     
    in this method you just need to change the name of your htmlb page like T1Report.htm with your html page.
    please revert if you require more information
    Regards'
    Narendra

  • How to do transactions in jsp pages using Java & MySQL ?

    Hi,
    I'm a newbie..
    I'd like to know "How to do transactions in jsp pages using Java & MySQL ?"
    Platform: Windows XP, Apache Tomcat 5.5, MySQL 5, Java bean without EJB
    what are the the different types of transactions? Differences between them?Pls provide examples?
    Which among them is the best method to implement a transaction?
    Pls help me...
    thnx in advance...

    http://java.sun.com/blueprints/corej2eepatterns/Patterns/DataAccessObject.html

  • How to create autofilter in excel page using jxl api?

    Hi Friends,
    I am using jxl api for excel generation. Its no problem
    but i need to set auto filter options. I am search in this API package but i can't find it.
    Any one know how to create autofilter in excel page using jxl api?.
    Please ..... Its urgent.... ...
    Thanks

    Hi,
    Please mail me on [email protected] if u will find any solutions, i will do the same if i will find any...
    Thank u in advance,

  • How to add target to jmsSystemResource MBean using JMX

    Does anybody know how to add target to jmsSystemResource MBean using JMX in WebLogic 9.0?(I am not using WSLT) I always get "NoSuchMethodException":
              [jmsServer] Caused by: java.lang.NoSuchMethodException: addTarget(weblogic.management.configuration.
              TargetMBean,) for com.bea:Name=admin01DefaultJMSServer,Type=JMSSystemResource

    go to the object which u want to compare
    go to->version management->select the TR request no->and select remote comparision there->and give the system where u need to compare this object
    and next press compare
    hope it will work
    cheer
    s.janagar

  • Showing actual content in JSF page using JCR datacontrol

    Hi,
    Is it possible to display the actual content from UCM as part of a JSF page using JCR datacontrols?
    Thanks,
    Anil

    Yes it is possible.
    When you create a connection based on the content server connection you will find the 5 methods under the JCR Data Control.
    1.getURI.
    2.getAttrbute
    3.getItems
    4.advancedSearch
    5.search
    expand the getItems drag the return on the jspx page.give the path as / only.
    It will display all the folders and files under the resource.

  • Does any know how to add web clips to Pages on iPad?

    Does anyone know how to add web clips to Pages in iPad?  Thanks in advance.

    i have no idea how they were lost - i think i must have updated the ipad and then i found the documents to be lost ? i restored the last back up which should have had the documents but to no avail??

  • HT5654 how to add videos to the ipad using the latest version of itunes

    how to add videos to the ipad using the latest version of itunes ?

    Hello zaraa90,
    After reviewing your post, I have located an article that can help with syncing content. It contains a number of troubleshooting steps and helpful advice for the issue you are experiencing:
    Sync your iPhone, iPad and iPod with iTunes using USB
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • Does anywone now how to add cambria police to pages?

    does anywone now how to add cambria police to pages?

    Cambria is a 'serif font that came with Windows Vista and Microsoft Office 2007, specifically designed for screen reading and to keep the good integrity of small characters when printing.' ('Police de caractères' is French for 'font'.)
    Quit Pages. Double-click the font to examine it and have the option to add it to Font Book. If it's compatible with Macs it will be added to the font list and be available in Pages.

Maybe you are looking for