Display header of HTML Portlet

OS: Windows 2000 5.00.2195 SP1
Portal: 3.0.9
I create a new page, and add a HTML portlet to it. Then I edit the page (via 'edit page') and choose not to display the HTML portlet header. This works perfectly.
But how can I show the header again? There is no customize link available anymore, and via 'customize' of the page I see that the header is already displayed.
Can anyone please help me with this? Thanks in advance!
Joey
null

The best way to do this is to simply use the "Edit Defaults" link for your given HTML Portlet (this is displayed when you edit or customize the portal page in question.) In the "Edit Defaults" customization screen for the HTML portlet you can either enable or disable the display of the portlet header for your HTML portlet.
You'll always be able to access the "Edit Defaults" link for your HTML portlet from the edit or customize screens for the portal page.
Best Regards,
Harry

Similar Messages

  • Html Portlet links displaying in another portlet on the same page

    I have seen similar posts but no detailed explaination of how this is done.
    I have an html portlet with links whose content I would like to display in an inline rendering portlet on the same portal page. How can I pass the link url from the html portlet to the inline rendering portlet?
    Thanks,
    Robyn

    If your environment is fairly static, you can handle this easily.
    The link in your HTML portlet must refer to the page URL of the portal page on which the HTML portlet resides (which changes from portal page to portal page), to which you need to append the parameter that your "inline" portlet (under which I'm not sure what you mean) reads:
    <a href="http://<portal_page_url>&my_param=value">click here</a>Is this close to what you're willing to do?

  • How to display current user using HTML portlet

    Hello,
    Is it possible to show any text such as Greeting, Current User (ex, Hello, Kevin) using HTML portlet. Can I use <oracle></oracle> tags to get the current user from the API?
    Please suggest me.
    Thanks,
    Satish

    Thanks for your suggestion. There is also another way for this:
    In a Portal text field (CMS item) you can type
    #USER# to display the username of the authentificated user or
    #USER.FULLNAME# to display the full name.
    Thanks,
    Satish

  • Html portlet to display Flash  -  Problem

    Hi
    I have created a HTML Portlet ,and the html consists of one flash (swf file).
    Iam running that portlet on weblogic 9.2.
    But the flash is not displaying in the browser.
    Please Suggest
    Srinivas

    Thanks for your help. I am trying to do it but it's still not working.
    Check this out, just by glancing at the below code, do you think that flash is able to read it? I read in the help that it's only capable of a few tags. Basically I am trying to put this code into a page to display:
    <object type="application/x-shockwave-flash" width="400" height="300" data="http://vimeo.com/hubnut/?user_id=matttstubbs&color=00adef&background=000000&fullscreen=1&s lideshow=0&stream=videos&id=&server=vimeo.com">    <param name="quality" value="best" />        <param name="allowfullscreen" value="true" />        <param name="allowscriptaccess" value="always" />    <param name="scale" value="showAll" />    <param name="movie" value="http://vimeo.com/hubnut/?user_id=matttstubbs&color=00adef&background=000000&fullscreen=1&s lideshow=0&stream=videos&id=&server=vimeo.com" /></object><br /><br />I put <a href="http://vimeo.com/matttstubbs/videos">videos I create</a> on Vimeo. You can see <a href="http://vimeo.com/matttstubbs">my profile</a>.
    Thanks.
    -Mattt.

  • Conditional display HTML Portlet

    Hi all, how can I conditionally display HTML portlet? I have a couple of html portlets on the page, but I want to use the page para to control the display of them. For Java/plsql portlets, it's fine. I don't know how to do that for html portlets. Any advice or suggestion is appreciated.

    we want to embed the part of html in to portlet at run time. portlet has a single navigation parameter defined (for run time)
    so for example, i write a jsr portlet and then I drag the portlet from resource catalog (composer) on to the webcenter page during run time. and then we would pass
    www.xyz.com/index.html as a value of navigation parameter to the portlet. and portlet would consume this index.html.
    problem is what is the attribute within portlet which would get binded and finally consume the index.html at run time ? is it
    src = .......... ???
    is it file = ......... ??
    is it url = ........... ??
    what is it ?
    we are not using UCM so entire Content Presenter taskflows is useless for us
    if it is say src = ... attribute, then we were not able to PASS the index.html TO src attribute as Navig Param at run time.
    remember, even if we able to pass index.html to portlet .............. then we do not want portlet to show index.html URL but rather would want to show the content of index.html (which is "Hello There, Greetings from the server") to show.

  • Display PDF File in portlet!!

    Hello
    I need to do almost the same thing that David but my users will upload pdf files and I need to display the file inside the portlet folder when they click the name of the item I don't want this item to be display in the whole browser. Please tell me how can I do that.
    Thanks in advance
    Ana Maria

    You can solve this by using an iFrame.
    The Definition of the iFrame can be made in an HTML Portlet or create it in a Dynamic Page (prefered).
    By giving the iFrame the name "_blank" every item that opens in a new page, the presentation will be shown in the iFrame Portlet, together with the default Acrobat Reader buttons.
    This works best in IE5.5.
    HTML Portlet:
    <iframe src = "http://otn.oracle.com"
    name = "_blank"
    width = "100%"
    height = "600"
    frameborder = "0"
    scrolling = "auto"
    marginwidth = "0"
    marginheight= "0">
    sorry, your browser doesn't support iFrames
    <ilayer src ="http://otn.oracle.com"
    id ="_blank"
    >
    </ilayer>
    </iframe>
    Dynamic Page source:
    <HTML>
    <HTML>
    <HEAD>
    <TITLE>iFrame</TITLE>
    </HEAD>
    <BODY>
    <ORACLE>
    declare
    l_src varchar(50);
    l_name varchar(10);
    l_border number;
    l_width varchar(5);
    l_height varchar(5);
    l_scrolling varchar(5);
    l_marginwidth number;
    l_marginheight number;
    begin
    select :source into l_src from dual;
    select :name into l_name from dual;
    select :border into l_border from dual;
    select :width into l_width from dual;
    select :height into l_height from dual;
    select :scrolling into l_scrolling from dual;
    select :marginwidth into l_marginwidth from dual;
    select :marginheight into l_marginheight from dual;
    htp.p('<iFrame src = "http://'|| l_src ||'"');
    htp.p('name = "'|| l_name ||'"');
    htp.p('frameborder = "'|| l_border ||'"');
    htp.p('width = "'|| l_width ||'"');
    htp.p('height = "'|| l_height ||'"');
    htp.p('scrolling = "'|| l_scrolling ||'"');
    htp.p('marginwidth = "'|| l_marginwidth ||'"');
    htp.p('marginheight = "'|| l_marginheight ||'">');
    htp.p('sorry, your browser does not support iFrames');
    htp.p('<ilayer');
    htp.p('src = "'|| l_src ||'"');
    htp.p('name = "'|| l_name ||'">');
    htp.p(' </ilayer>');
    htp.p('</iframe>');
    end;
    </ORACLE>
    </BODY>
    </HTML>
    Giving the bind variables LOV's will complete this to a nice new component!
    Good luck!
    Kind regards, Frank

  • HTML Portlet - customize

    Hi,
    I am using the HTML Portlet in a page to display some company specific announcements to a user who is logged into the system. Right now all the users get a "Customize" link on top right corner of the portlet, which would allow them to post the announcements. Is it possible to disable(or make invisible) this link to some users and enable/show it to some others, thus ensuring that only few users are able to post the announcements ?
    Thanks in advance,
    Karthik

    Hi,
    You cannot grant any specific privileges on a html portlet to a user. The only way you can suppress the customize link is to not display the portlet header. But this cannot be done for specific users. It would not show up for all the users.
    Thanks,
    Sharmila

  • How to change the background color only for one HTML-Portlet?

    Hi all,
    I have created a HTML-Portlet in my root-page. The root page have a style: Main-Style.
    I want to change the background-color only for this one HTML-Portlet:
    <html>
    <header><title>Test</title></header>
    <body bgcolor="#999999">
    Test
    </body>
    </html>
    But this does not work...
    When I use the CSS, then it will change the background-color for the root-page too.
    Thans
    Leonid Pavlov

    could you try this
    <table bgcolor="#999999">
    <tr>
    <td>
    test
    </td>
    </tr>
    </table>
    I don't think you need <html><header><title>Test</title></header>
    <body></body></html> for your HTML-Portlet.

  • Display image in JSP Portlet

    I create a JSP portlet. But The portlet can't display image(gif file, jpg file). I have modified the provider.xml and the following line is added:
    <imageURL>URL_Path</imageURL>
    But, the image still cannot be displayed.
    How can I display image in JSP portlet?

    Leo Cheung,
    You could try the following :
    1. Add a virtual directory path Alias 'imgf' in the Apache configuration file httpd.conf to load the image file. Add the following line under the alias section :
    Alias /imgf/ "<your directory>\images/"
    2. Place your gif/jpg files (eg., work.gif) in the images directory.
    3. Use the IMG tag of HTML :
    <IMG src="/imgf/work.gif" border=0 width=80 height=80> in the JSP file at the location where you need to display the image.
    Hope this helps
    Pushkala

  • Display software execution in portlet...

    Does anyone know of a way to execute or display execution of a third party piece
    of software in a portlet?
    thanks
    Alex

    you can reference the file by using the folder name followed by the file name. You can point to the url either by adding an html portlet to your page and plugging in a anchor pointing to it or add a url item to a folder with the url of the file. Then render this folder as a portlet and plug it into your page. There are several other methods also depending on the exact results you are looking for.
    Hope this helps

  • How to use Custom Search in Dynamic Page or HTML Portlet ?

    Gurus,
    1. I have a tab called My Space in the portal web site, where user gets a personalized view of the content.
    2. I am using custom attributes and custom item types. I have a custom attribute called 'Location', which is a attribute of custom item types.
    3. I have 2 pages - News and Events.
    4. All the content in News and Events page is tagged by the attribute 'Location'.
    5. The requirement is to let the user search the News and Events by Location.
    6. To achieve this I used the Custom Search portlet and the user can select the attribute Location and see the resultant News and Event items by location in the Search portlet.
    7. The requirement is to present the News items and Event items in separate regions on the page and show only the first 5 News and Event items in the result and show a More link which would guide the user to rest of the News and Event items.
    8. Eventually there may be more content other than News and Events tagged by location. If so, the requirement is to create a new region and display the new content.
    9. How would I do this using custom search ? I was thinking if there is anyway I could use the custom search api (where can i find it ?) in the HTML portlet or Dynamic page and submit the result to IFRAMES in each region and show the output ?
    Pls advise.
    Thanx a bunch.

    I would suggest that you use two custom search portlets; one for the news items and one for the events items. Switch the custom search portlets to "AutoQuery" mode and add the relevant criteria. On the results display tab of the the "edit defaults" screen, choose to show just 5 items.
    To add a link to show the user mode results, I'd create two new pages that have just a single custom search portlet on it that is customised to show more of the results and maybe has the pagination links enabled.
    Then I'd add two "Page Link" items underneath the two news and events portlets on the first page in an item region.
    I'm sure there are other ways of doing this as well. Hope that helps to get you started.

  • Testing execution of 6i reports from a HTML portlet

    How can I execute an Oracle 6i report from a portal30 HTML portlet. The HTML command looks something like this "C:/reports_6i_runtime.exe userid=user_account/password@connect_string H:/report_6i.rep" I get the message "page cannot be displayed".
    When I create a shortcut on the desktop and call the shortcut with this command "C:\Desktop\report_6i.rep" it will execute. This is not an option.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Steven Leung ([email protected]):
    It looks like you are trying to call a URL on your local machine. If this is the case, you may need to format your URL as:
    file://c|/blah/
    or something to that effect. I believe it needs to be a proper URL if you are calling it from your local filesystem.
    You may get a better response from the Reports forum.
    <HR></BLOCKQUOTE>
    I did try using "file://" in my HTML, with the same results.
    I was able to get the reports runtime to come up when I executed it from the windows run command line, but it did not accept either parameter I passed.
    The command did not run at all from the browser.
    null

  • HTML Portlet Error

    The insert html wizard (HTML Portlet)seems to reject code in certain instances even where that html is well formed. The following error is generated:
    (WWC-00000).
    The HTML used is below. Is there a limited on the size of HTML?
    Thanks in advance
    <html>
    <body leftmargin="0" topmargin="0">
    <table border="0" cellpadding="0" cellspacing="0" width="872">
    <tr height="62">
    <td colspan="15"><img src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/cablenet2.jpg" width="872" height="62" alt="" border="0"></td>
    </tr>
    <tr height="23">
    <td width="124" height="23" align="left" valign="top">
    <img width="124" src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/curve01.gif" border="0"></td>
    <td width="3" height="23" align="left" valign="top">
    <img SRC="http://orcldb/pls/cportal/docs/FOLDER/IMGS/but01off.gif" name="hb" BORDER="0" ALT="HomePage"></td>
    <td width="50" height="23" align="left" valign="top"><img height="26" width="50" src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/tophome.gif" border="0"></td>
    <td width="3" height="23" align="left" valign="top">
    <img SRC="http://orcldb/pls/cportal/docs/FOLDER/IMGS/but01off.gif" name="lb" BORDER="0" ALT="Login"></td>
    <td width="50" height="23" align="left" valign="top"><img height="26" width="50" src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/login.gif" border="0"></td>
    <td width="3" height="23" align="left" valign="top">
    <img SRC="http://orcldb/pls/cportal/docs/FOLDER/IMGS/but01off.gif" name="c2" BORDER="0" ALT="Register"></td>
    <td width="62" height="23" align="left" valign="top"><img height="26" width="62" src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/register.gif" border="0"></td>
    <td width="3" height="23" align="left" valign="top">
    <img SRC="http://orcldb/pls/cportal/docs/FOLDER/IMGS/but01off.gif" name="d" BORDER="0" ALT="FAQ"></td>
    <td width="42" height="23" align="left" valign="top"><img height="26" width="42" src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/faqtop.gif" border=0></td>
    <td width="3" height="23" align="left" valign="top">
    <img SRC="http://orcldb/pls/cportal/docs/FOLDER/IMGS/but01off.gif" name="thb" BORDER="0" ALT="Help"></td>
    <td width="42" height="23" align="left" valign="top"><img height="26" width="42" src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/helptop.gif" border=0></td>
    <td width="3" height="23" align="left" valign="top">
    <img SRC="http://orcldb/pls/cportal/docs/FOLDER/IMGS/but01off.gif" name="e" BORDER="0" ALT="Contact Us"></td>
    <td width="64" height="23" align="left" valign="top"><img height="26" width="64" src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/contactus.gif" border="0"></td>
    <td width="139" height="23" align="left" valign="top">
    <img height="26" width="139" src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/bar02.gif"></td>
    <td width="227"><img src="http://orcldb/pls/cportal/docs/FOLDER/IMGS/end.gif" border="0"></td>
    </tr>
    </table>
    </body>
    </html>
    null

    What you need to do is to remove your head and body tags from the HTML that you inserted into the HTML portlet.
    The HTML portlet is designed to take HTML that is within the <BODY> of a page, and not the entire HTML page source that you have. Keep in mind that a portal page is basically comprised of a set of nested HTML tables, so any HTML that you insert into a HTML portlet is basically HTML code that is being inserted into a HTML table cell.
    Best Regards,
    Harry
    Thanks,
    Harry

  • Can I use JavaScript HTML Portlet and PDK Portlets

    Can I use JavaScript HTML Portlet and PDK Portlets?
    My Script works fine with the an HTML portlet but it always gives a an Error Message in the status bar is that normal...
    Other then that I have JavaScript in my PDK portlet page it does not work.. it is the the same javascript I use for in my HTML portlet which works in HTML portlets..

    You'll have to place your JavaScript in the header section of your Portal page. To do so, use HTML/UI templates. For more information, refer to the How to Design and Build Compelling Portal Interfaces whitepaper.
    Good luck,
    Peter

  • Link destination to HTML portlet

    When adding an HTML portlet to a region the link referring to the HTML document is static.
    I have created a number of reports that I would like to have displayed in one portlet. The report that is displayed would be based on which link is selected. The html links would be on the same page as the portlet but in another region.
    Thank you for any help.

    Not quite right. I guess a better way to say what I want to do is when a link is clicked I want to keep the reports on the same page with the links.
    Right now the links are manually entered onto the page. The ideal task would be to have the links read from database and when the link is clicked a report would show on the same page. I read that a report can have clickable html links but still not sure how to control where the linked report is displayed.

Maybe you are looking for

  • How to validate in ADF Swing application

    I created an app using ADF Swing:Holiday. My table is Holiday has: HolidayID, Holiday, Reason, Desc. I only want to show Holiday, Reason, Desc. Holiday is Date type. Now I want to validate if user type an ilegal format date?

  • From wehre can I download Oracle Clusterware 11.1.0.7 (upgrade)

    I need to upgrade my Clusterware installation to version 11.1.0.7, but I can't find a place from where to download it (Google doesn't help). I've installed Oracle Clusterware 11g Release 1 (11.1.0.6.0) for Linux x86-64 from this page: http://www.orac

  • Problem in installing app on Tomcat 6 at linux ?

    Hi I developed a web application, I deployed it on Tomcat 6 at windows, it worked fine. It also run successfully on eclipse also. But when I installed it on Tomcat 6 at linux server, I got following error org.apache.jasper.JasperException: An excepti

  • Dynamic PDF Creation

    Has anyone used server based PDF creation components? I am after some recomendations as I am sure someone here must have used one before. All I want to do is use a template on the server, and populate fields from a database when requested. It needs t

  • Insert missing expression error

    I am trying to insert data into sql plus and I keep getting this error. I am new at this and have no idea what I am doing wrong. Could someone please help! here is the table I am inserting: Name Null? Type MANUFACTURER_ID NOT NULL NUMBER M_NAME VARCH