How to costimize portlet header in homepage?

Hi, folks:
I had a content area portlet needs to show up
in the home page. How can I put an image as the portlet header instead of using the default one?
Thanks.
null

Frank,
What do you mean by the "default one"? If you mean the default portlet header (the bar with rounded corners), you can turn that off in the region settings. Then, you can supply your own content (such as an image) at the top of your folder.
Regards,
Jerry
null

Similar Messages

  • How to make portlet header not clickable?

    Hi,
    I published a page as a portlet and placed it on another page. I enabled the region where the portlet resides in to show the portlet header. Now I found out that if I click the portlet header, the orignial page of the portlet is shown. I don't want to show it to my users, but do want to keep the portlet header and make it non-clickable. Is there a way to do that? Any help will be appreciated.
    I'm using version 10g.
    Thanks,
    Yaxu

    Hi,
    You have to disable the "Show Details Link on Portlet Header" box for the region where you display the page as portlet.
    It's at the end of the "Edit Region" Main page where you can set which links you want to display.
    Alex

  • How to add links to portlet header ?

    I want to add a print link to the portlet header, along with Customize, Help, About etc
    Is there any way to do this ? (Using PDK, java or pl/sql)

    Andrew,
    From web providers' perspective, you should be able to do this. Constructing the portlet header involves constructing the title link & then adding the action parameter links for all the modes that have been enabled using the provider.xml. The title part is constructed by the method renderTitle() in oracle.portal.provider.v2.render.DefaultContainerRenderer while action parameters (i.e. "Customize","help" etc) are rendered by renderActions(). This method internally invokes renderAction() which by default would render the locale specific text for that mode. So to fulfil your requirement you will have to create your own Container Renderer by extending the DefaultContainerRenderer and overriding the method renderActions() to incorporate one more link on the header.
    Having said that, all the links on the portlet header are mapped to a unique mode. I don't think that you should be creating a new mode for this (would involve extending a lot of JPDK framework classes), but am not aware of how the flow will happen once the "print' is clicked by the user. Perhaps, JPDK gurus can throw some light on this.
    Regards,
    Abhinav

  • How can I add an image above my portlet header ?

    Hi,
    Currently I am writing a portlet.I would like to add an image above the portlet header just like the standard portlets have.
    Does somebody know how I should realise this ?
    thanks
    Jerome

    Please take a look at FAQ at: http://technet.oracle.com:89/cgi-bin/ubbmisc.cgi?action=getannounce&ForumNumber=66&Start=2451891.99&End=2452276&Session=

  • Removing customization link from portlet header.

    Hi,
    Could u suggest me out of the 2 ways to remove customization link from portlet header.I am using the default stock prices portlet in my page.
    Where and how should i change the provider.xml file.
    If not this how can I setShowEdit(False) which is one of the methods in MutablePortlet interface.How can i find this code related to Stock portlet.I mean where can we have access this code where the provider API's are used for some of the readymade portlets that oracle provides.
    I am using release 1 of oracle portal.
    Thanx
    Vipul

    Hi,
    I see two things that you could try :
    first try to set the security level at the portlet level, then allow users to display your portlet, not to customize it. I know it's possible with tabs, maybe it can apply to you.
    Else you also can modify the package of your portlet (or the provider.xml file if it's not the package). You should read the pl/sql code and find the variable concerning the customization link in the rendering part. It may be set to 'tru', just set it to 'false' and recompile.
    I've done it when installing some portlets and it works : that way I could translate the portlet in franch, remove the help link, remove the detail link, and so on...
    Hope this helps,
    Gael.

  • Portlet header vs Page header

    I'm working with a report that I have displayed in a portlet,
    actually, the customization form is displayed in a portlet. I
    want to display the resulting report in the same portlet, but
    since that looks to be pretty difficult, I'm willing to settle
    for showing it in a new page. But, I'd like to have the same
    type of header on the report results page. If I set the user
    interface for the report to have a header, the report
    cutomization form will also have that interface inside the
    portlet which just looks stupid. Can someone tell me how I can
    get a different interface, or at least a different header, or no
    header, on a report customization form in a portlet while having
    a header on the report itself in its own page?
    I'd appreciate any thoughts that someone has on this.
    Nate Baxley

    The page style allows you to define only one color for the portlet header. You could try adding some HTML portlets to your page that override the style used for the portlet header.
    Regards,
    Jerry

  • Supressing Portlet Header programatically

    All,
    I need to supress the Portlet header. I would like to do this without using the customize tab. The API says that the portlet_runtime_record has the has_title_region attribute. How can I set this value to false, so that the header is suppressed automatically.
    Rgds
    Sanjay

    That's right because you have multiple provider instances deployed. Each provider has its provider.xml for its configuration. To locate the appropriate provider.xml you need to identify the provider instance. For instance if you use the JPDK sample provider in your portal installation (http://host:port/jpdk/providers sample) then the location of the provider.xml will be $ORACLE_HOME/j2ee/OC4J_Portal/applications/jpdk/jpdk/WEB-INF/providers/sample.
    Note that the location of the provider.xml within the deployed provider application is defined in the sample.properties located in $ORACLE_HOME/j2ee/OC4J_Portal/applications/jpdk/jpdk/WEB-INF/deployment.
    You now have access to the provider settings and you can set the renderer for each portlet of the provider individually. By default the standard portlet renderer class is used. You need to write you own renderer class. For more information about portlet development you need to look at the documentation. Starting point is http://www.oracle.com/technology/products/ias/portal/index.html

  • Portlet Header Color

    Hi All,
    I want to know , how to change the style of a page so that each Portlet can be displayed with his own Portlet Header color but not with the default
    Portlet Header color of the page:
    Is this possible?
    Thanks in advance
    null

    The page style allows you to define only one color for the portlet header. You could try adding some HTML portlets to your page that override the style used for the portlet header.
    Regards,
    Jerry

  • Portlet Header Customization

    Is it possible to substitute icons for the text specified in the portlet header for help, about, etc.?
    If yes, how is this accomplished?

    Hi,
    Its possible to replace the default text items like "Customize", "help" etc. with images in the rendered portlet. The above texts are a part of the portlet header that gets constructed by the Portlet Container. Constructing the portlet header involves constructing the title link & then adding the action parameter links for all the modes that have been enabled using the provider.xml. The title part is constructed by the method renderTitle() in oracle.portal.provider.v2.render.DefaultContainerRenderer while action parameters (i.e. "Customize","help" etc) are rendered by renderActions(). This method internally invokes renderAction() which by default would render the locale specific text for that mode. So your requirement is to change the default behaviour of this method to render images as links for respective modes in place of the default text.
    You can achieve this by creating your own Container Renderer by extending the DefaultContainerRenderer and overriding the method renderAction(). While implementing the method, you can use a switch construct to add different images for different modes.

  • API to reference portlet header/title?

    I am wanting to know the pl/sql api to access the actual portlet header or title bar, whatever you choose to call it. I can access subheaders, but I cannot figure out how to access the actual top header. What pl/sql api will do this?

    You can achieve this if you create portlets programmatically. When you draw the portlet header you can specify what links are available from that header (i.e. details/title, customize, help, and about).

  • Elimination of Portlet Header Customise Link

    How to eliminate or hide the customise link
    in the portlet header.Should not remove portlet header.Link only to be removed.
    User should not customise the Porlet display name.What are the possibilities.
    Thanks.
    null

    We plan on adding this ability moving forward, but the only way to remove it today is to not display the banner.

  • Customize portlet header

    Hi everybody,
    i use Portal 902.
    i just customized the color header of my portlet, i chose a non preset color by specifying the hexdecimal value i need.
    I want now to define the rounded edge corner style for my portlet header. But of course the right and left images are not define so i created them and put it on the %ORACLE_HOME%/portal/images directory of my instance.
    It seems like my images doesn't exist.
    I think i must register my image but how?
    Is anybody know how to ?
    I will appreciate any help.
    Thanks
    bye
    Florent

    Hi,
    Please check the following article: http://technet.oracle.com:89/ubb/Forum70/HTML/000965.html
    Hope this helps.
    Regards,
    Jatinder

  • How to display the header data on different position in alv report

    hi all,
    how to display the header data on different position in alv report.
    for example ,
    customer                                                   name
      xxxx                                                         xxxx
                     vendor        name     street 
                      xxxx         xxxx      xxxxx
    pls   help me .

    hi
    as per my understanding you need to trnasfer header internal table data  to pdf..
    please check the following links for internal table to pdf..
    Convertion of Internal table data to PDF
    This link is related to ur issue
    Re: how to insert the calling of the FM: OTF to PDF
    Thanks

  • How to set the header variables in weblogic

    Hi,
    We have a following set up in our environment.
    We have weblogic and on the top of it we have apex listener deployed which redirects Oracle Apex.
    My Issue:
    How can we set up the header variables in weblogic once the user is authenticated against weblogic server.
    We are struck here, not knowing how to set the header variables in weblogic server. Its fairly straight forward for Oracle Access Manager or others..
    Thanks
    Ramesh P.

    maybe you are looking for the routing options
    http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/userguide/modelingmessageflow.html#wp1125348

  • Hi gurus  in BDC how to print the header on the top of the data

    hi gurus  in BDC how to print the header on the top of the data

    hi,
    while downloading the file using gui_download function module
    in that function module in  TABLES  filednames parameter is used to get headings
    example:
    CALL FUNCTION 'GUI_DOWNLOAD'
         EXPORTING
      BIN_FILESIZE                    =
           FILENAME                        = FILENAME1
          FILETYPE                        = 'ASC'
          WRITE_FIELD_SEPARATOR            = 'X'
         TABLES
           DATA_TAB                        =   T_ZETBR
          FIELDNAMES                       = IT_HEADER
    reward if useful,
    thanks and regards

Maybe you are looking for