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.

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?

  • 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

  • Link in HTML Portlet not working

    I have a HTML Portlet which has the following code
         Back to Top
    This link works fine in a stand alone html file. On click of 'Back to Top', it takes to top of the document. But if the code is embedded in html portlet, it takes to previous page accessed. I understand that the portlet is not able to understand that it needs to go to top of the object. How to fix this?

    Hi Sakthi,
    When you hower over the Back To Top link, what does it show in the status bar? Is it just prepending #top to your existing browser link? Or is it pointing to the previous page?
    Secondly as Ido mentioned, you could always embed an anchor on your page template and refer to it.
    As far as javascript is concerned, you could try something like document.scrollTo(0,0);
    I am not sure if it works on IE and Firefox the same or not, but you could give it a shot.
    thanks,
    Harsha

  • Read / Get the link destination name in PDF file by JavaScript

    Is there is any way to read or retrieve the link destination name by the JavaScript?
    In my document there is more then 100 of link with destination name of the named destination, now I want read all the link and retrieve the destination name in the link.
    Here I was used getLinks(,) method to get the links in the document. And also I am able to get the properties of getLinks such as borderColor, borderWidth, highlightMode, rect and so on.
    But I want to get the destination name of the link.
    Is possible?
    Thanks & Regard
    Thirusanguraja Venkatesan

    You may need to use a plug-in.
    One of the experts on this forum, Gilad D, has a tool called Batch Edit URL Links here:
    http://try67.blogspot.com.au/2010/03/acrobat-batch-edit-links.html
    There is also one called AutoBookmark that also handles links:
    http://www.evermap.com/autobookmark.asp

  • 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.

  • Popup link inside  a r portlet - 'calendar'

    Hi All,
    I'm trying to pop up a link that I've define inside a caledar portlet, but the link opens up on the entire window instead of just inside the portlet itself. I've set my "TARGET" to null and do not know what the "TARGET" value should be. Within my page, I have several portlets. One of which is a calendar portlets with links. Those links will replace the entire page once they're clicked, rather then just open up within the calendar portlet. Do anyone know?
    Thanks in Advance,
    Vie

    How do I pop up a small message window on top of my portal page?
    . My portal page contains only a html portlet and I do not want to use the 'onLoad='. Is there something I could do in my pl/sql?
    right now I have,
    IF condition = 'N' THEN
    url := PORTAL30.wwv_user_utilities.get_url('ABC.LINK_TO_PAGE');
    portal30.wwv_redirect.url(p_url => url);
    ELSE
    null;
    end;
    I tried to sneak in
    PORTAL30.wwv_javascript.open_script;
    htp.p('window.open(''http://xyz/pls/portal30/url/page/popup'',''Title'',''width=300 height=400'');');
    PORTAL30.wwv_javascript.close_script;
    into my if statement, but this doesn't work.
    Any help appreciated. -------------------------------------
    just making it clearer:
    my if statement looks like:
    IF condition = 'N' THENPORTAL30.wwv_javascript.open_script;
    htp.p('window.open(''http://xyz/pls/portal30/url/page/popup'',''Title'',''width=300 height=400'');'); -- this is my popup window
    url := PORTAL30.wwv_user_utilities.get_url('ABC.LINK_TO_PAGE');
    portal30.wwv_redirect.url(p_url => url); -- this will take me to my portal page
    ELSE
    null;
    end;

  • 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

  • Apply CSS to HTML portlet

    How can i add a external CSS or add an image to a HTML portlet.Pls help me out.

    Here you go:<br><br>
    Hello Sandeep: <br><br>
    From the URL structure I assume that you are using 9i. I haven’t tested this on 9i, and in my initial post I safely assumed it to be 10g. <br><br>
    Relative URL does work on Portal 10g. If you are using 10g try the following: <br><br>
    In your template try using relative URL for your stylesheet. Example: <br>
    <link href="/portal/page/portal/pagegroup/page/stylesheet.css" rel="stylesheet" type="text/css"><br><br>
    This should definitely work. If this does not work, try adding this substitution tag within the head of the page: #PAGE.BASE#<br><br>
    I tried with both formats of the relative URL and both works in 10g.<br>
    Examples:<br>
    /portal/page/portal/pagegroup/page/stylesheet.css<br>
    /portal/page/portal/16205149684D205AE043AA033FC5205A<br><br>
    I also tested your case in 9i. I tested it with the following relative URLs:<br>
    /pls/portal/docs/page/pagegroup-name/css/stylesheet.css<br>
    /pls/portal/url/ITEM/104F6E9F11DC60C6E043AA03204A60C6<br><br>
    Both seem to work in 9i as well. In this case also, I added #PAGE.BASE# to my template. <br><br>
    As a test I removed #PAGE.BASE# from both 9i and 10g and both worked. <br><br>
    Do some test cases and post your results here so we can try to find a solution for your particular problem. Good Luck!

  • How to Remove the "Analyze..." link from Discoverer Gauge Portlets

    Is there a way (a hack, even?) to remove the "Analyze..." link from the Discoverer Gauge portlets? Or, can we redirect that link to point to a different Discoverer Worksheet?
    As a work-around, we're using an HTML portlet below the gauge to link where we want to go, but the "Analyze..." link is still there, so it's confusing to the end user.
    Thanks!

    One quick statement : These customizations are not supported by Oracle. These notes are purely for informational purposes. We cannot guarantee the ability to upgrade your Discoverer environment if you make these changes. Also note that if you want to log TARs and/or bugs against the Discoverer portlets after you have made any of the changes listed in the note shown above, Oracle Support can ask you to back out any changes and reproduce the problem.
    Thanks
    Keith
    Oracle Business Intelligence Product Management
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Beans http://www.oracle.com/technology/products/bib/index.html
    Discoverer: http://www.oracle.com/technology/products/discoverer/
    BI Software: http://www.oracle.com/technology/software/products/ias/devuse.html
    Documentation: http://www.oracle.com/technology/documentation/appserver1012.html
    BI Samples: http://www.oracle.com/technology/products/bi/samples/
    Blog: http://oraclebi.blogspot.com/

  • BC4J: HTML Portlet

    Hi,
    I'm trying to build an HTML Portlet (like PORTAL) with containers, how can I do it?
    I'm trying it with the Wizard but I need more customization (like height and width).
    Thanks,
    Miguel

    You need to get to the customize page without going through the link on the portlet header. The easiest way to do this is to copy the customize link location while logged in as another user (such as the portal admin). Then log in as the end user, paste this link in your browser and you can change the customization.
    Hope this helps,
    Hsiu

  • Hide HTML Portlet

    Hi,
    I have an HTML Portlet to change password which is visible to public users so that they can reset their password if they forgot it. How can I hide it when they are logged in? The other way around is easy by setting access to authenticated users. how can I make this happen?
    Thanks.

    No.
    The only thing you can do : change the color of link on the portlet header so that it will be the same with portlet header's backgroung color.
    Or : uncheck the portlet header checkbox in options for portlet. In this case your portlet will be without header (like most portlets in Oracle site, but you will hide the "customize" link.
    Best regards.
    Izabella.

  • Html portlet

    hi,
    on the Home Page of our site, in the area of the news(html portlet), the message differs from one user to another; all these messages were put on line at different moments of life of the site but were replaced. it seems that the message depends on the date of inscription of a user.
    how removed these messages already creates?
    please answer me quickly.
    null

    You need to get to the customize page without going through the link on the portlet header. The easiest way to do this is to copy the customize link location while logged in as another user (such as the portal admin). Then log in as the end user, paste this link in your browser and you can change the customization.
    Hope this helps,
    Hsiu

  • Remove border from HTML portlet

    Hii,
    When i am adding HTML portlet then a border is coming automatically. How to remove this border.

    Hi,
    The Rendering of the Portlet depends on the Region too - you can have a look at the "Edit Defaults" ( the Pencil Icon ) link for the Region where the Portlet is located. You can uncheck the " Show Portlet Borders " ( or, even " Show Portlet Headers " ).
    Regards,
    Sandeep

  • 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.

Maybe you are looking for