Display Text Items in New Page

I am currently designing a Content Area for our new site and have come across a problem which I really need to find a way round.
I am adding HTML articles as text items into the Content Area. For the interface, I am using a Portal page and publishing the Content Area as a portlet onto this page. I need to do it this way rather than exposing the actual Content Area page as our organisation needs to use an external style sheet on the page for accessibility purposes.
What I need to be able to do is when a user clicks on the link for the item, it will open up inside a blank page inside the same browser window, preferably with a template added to it. I know there is actually an option to set the item to display inside a blank page but this 'blank' page is actually the Content Area page and this uses the internal Portal style.
There doesn't seem to be any way of specifying your own template for a Content Area page which is pretty much what I need to do.
Thanks in advance for any help!
Richard

Erik:
Very good to know! I ended up logging an SR after all, and included your post to help guide the support rep.
I'm pretty sure it's a server side problem, because the MIME type is served up incorrectly. IE seems to handle text/plain encoded that are actually HTML more gracefully than Firefox.
(As for handling anything else gracefully, well... that's another story :-) )
Thanks!
-John

Similar Messages

  • Displaying text item inside the page I would like

    Hi, is it possible to open and display from text item link new window with formatting title, description and own text, but not only on the blank default page, but on the special page which I have created for this (with my layout as a template)?
    Thanks
    Marek

    Hi Marek,
    I believe what you are looking is for the new Portal 10.1.4 feature - itemplaceholder:-
    http://download.oracle.com/docs/cd/B14099_15/portal.1014/b13809/template.htm#CIADAEGG
    "You can use Portal Templates for items to enforce a particular layout, style, and associated content. With Portal Templates for items, a requested item displays within the layout defined by the template rather than in place on the item's container page. For example, when a link to an item displays on the item's container page, users click the link, and the item content displays within the context of its associated Portal Template. The item's content is displayed in place of the item placeholder on the template."
    I hope it helps...
    Cheers,
    Pedro.

  • Display Text in the Second page of the Report.

    Dear,
    I have a Report With Group G_Emp, having Columns Eno, Ename etc. in a Repeating frame R_1 and
    I have put A frame below this repeating frame R_1 with a Text Item Just for Displaying Comments, so just i want to display this Text Item in the second page and the Employee details in the first page, the restriction is that the Text item should not print in the first page.
    I hope you understand,
    pls help.
    Stalin Ephraim...

    Hi,
    if i understand well you could maybe try this :
    or ) for your A frame below the repeating frame specify break page before = YES
    or ) and if i understand your meaning correctly you want your comment to show once, on a seperate last page -->
    in your layout section move the sdesign for your A frame from the main section into the traileer section.
    regards, E.

  • Displaying values in a new page

    I have a java script code. At the end when the user clicks on the button after entering the values in the 3rd page, the values shall be displayed in a new page. Please help me out with the final approach:
    <html>
    <head>
    <script language="LiveScript">
    function WinOpen() {
    if (document.form1.cap.value == "")
    alert("Enter value in text box");
    return;
    msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no, scrollbars=yes");
    msg.document.write("<HTML><HEAD><TITLE>Yo!</TITLE></HEAD>");
    msg.document.write("<CENTER><h1><B>This is really cool!</B></h1></CENTER>");
    msg.document.write('<BODY><form name="form2">');
    for(var i =0; i < document.form1.cap.value; i++)
    msg.document.write("<INPUT type=text name=tbAlphaNumeric>");
    msg.document.write("<br>");
    msg.document.write('<input type="button" name="Button2" value="Steal" onClick="javascript:window.opener.WinShow();">');
    msg.document.write('</form></BODY></HTML>');
    function WinShow() {
    msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no, scrollbars=yes");
    msg.document.write("<HTML><HEAD><TITLE>Great!</TITLE></HEAD>");
    msg.document.write("<CENTER><h1><B>Display of second page text elements!</B></h1></CENTER>");
    for(var j =0; j < document.form1.cap.value; j++)
    msg.document.write(document.form2.tbAlphaNumeric[j].value);
    msg.document.write("<br>");
    msg.document.write('</form></BODY></HTML>');
    </script>
    </head>
    <body>
    <form name="form1">
    <INPUT type= "text" name=cap>
    <input type="button" name="Button1" value="Push me" onClick="WinOpen()">
    </form>
    </body>
    </html> 

    This is a Javascript related question, not a Java related question. Those two languages have nothing to do with each other but a slight similar name and syntax. Although the most Java web developers also understand Javascript, it is not the intention of those Java forums to discuss about Javascript. The forums should not be polluted with unrelated questions.
    Post this question in a Javascript related forum. There are ones at [http://www.webdeveloper.com] and [http://www.dynamicdrive.com].

  • Displaying text messages CRM Home Page

    Hi Gurus!
    Is there a way to display text messages on the opening page within CRM? For example, if you wanted to alert CRM users to outages, news or system changes.
    If anybody knows. I'll be grateful.
    Regards!
    Maria.

    Hey Maria,
    you can just have a look at this thread
    IT Service Management - IT News on Home Page
    It also refers to a link of Raquel Pereira de Cunha, who is doing some IT-News Content stuff for the Solution Manager.
    Configure External Web Links in IT News Content Block
    These are the interal possiblities you have in SAP CRM. A workaround could also be to create a mashup with a newsfeed and bind that into your dashboard. Content about that is available here:
    SAP CRM 7.0 EhP1 - Web Mashup Functionality

  • How to create label & text items in a page dynamicly(TOP URGENT)

    Dear all;
    did any1 tried before to create a PLSQL which can create labels or text items?!! i have a page which i want to create labels according to the count of rows in the Database table?
    Regards;

    I would first try creating an 'On Load - Before Header' PL/SQL Computation to count the rows, and store the result in a hidden page/application item, e.g. P120_ROW_COUNT.
    Then in the label of the item, put &P120_ROW_COUNT. as the Label Text.
    I haven't tested it - but it should work.

  • How to display text everytime  on new line

    hi
    i wana display my text everytime on new line like this
    class1
    earth & atmosphere]
    tell me what i do

    You can also code the lines one at a time:
    sprite(1).line[1] = "class1"
    sprite(1).line[2] = "earth & atmosphere]"
    Depending on the situation, this may or may not be
    preferable. I use both
    this and Mike's method on a regular basis. (Though I usually
    change the
    text on a member basis, rather than on the sprite, seems to
    work better.)

  • Refresh display image item without reload page

    hi all, is a way to refresh (requery) a display image item to change the image via botton and do not reload page ?
    thanks
    Edited by: Reza.Gh. on Sep 24, 2012 11:56 AM

    I create a sample app :
    https://apex.oracle.com/pls/apex/f?p=9310:1
    code of item  P1_CAPTCHA_IMG :
    SELECT captcha_img FROM captcha WHERE response = :P1_CAP_V;
    item P1_CAP_V  code (computations) :
    SELECT *
    FROM (
    SELECT response
    FROM captcha
    ORDER BY
    dbms_random.value
    WHERE rownum = 1 ;
    Refresh botton code :
    action 1 :
    SELECT * into :P1_CAP_V
    FROM (
    SELECT response
    FROM captcha
    ORDER BY
    dbms_random.value
    WHERE rownum = 1;
    action 2:
    refresh item P1_CAPTCHA_IMG

  • How do you link 2 text boxes in new pages

    How do you link two text boxes in the new pages.  The old one was much easier to use.

    I think this is impossible! Ive been trying today and I couldnt do it. Then I opened up an old document that had text linking in it and I got a message telling me that the text boxes were now unlinked!  Why would you remove that? For me this software is now useless. How on earth do I get my old version back?
    <Edited by Host>

  • How can I stop firefox from checking add-ons and displaying the What's new page each time I launch it

    Since upgrading to the latest version, I have viewed read and interacted with everything on the What's new page. I have done this a number of times but the page is still opened each time I launch Firefox. In addition it shows my homepage in a second tab.
    Prior to opening Firefox it checks for add-ons.

    hello Michells, this will likely be caused by the user.js file in your profile folder.
    go to the firefox ''menu ≡ > help ? > troubleshooting information'', click on ''profile folder/show folder'' and close all firefox windows afterwards. a windows explorer window should open up - in there delete the file named '''user.js''' and restart the browser afterwards.
    [[How to fix preferences that won't save]]

  • How do I highlight text in the new Pages?  It's not clear.

    I have the new version of Pages.  And it appears that highlighting of text is an issue.  This is a basic function.
    I found there is one quick key version, but doesn't clearly explain how to change highlighting colours.  How to get into it.
    I have to explain this to my 80 year old mom, who we told to get a Mac because it was easier!
    So if anyone has it laid out step 1, 2, 3, that would be helpful, because it's not clear to me either.
    Thanks!
    Apple - please to a quick fix for this one, it should be the same as changing the size or the font or like bold or italic.  Simple, clear, fast and doable..... for anyone!

    TO Peter,
    Thanks for the list. I had found it in LibreOffice, tucked away in the Background tab of the Character pane opened by the Character... menu item in the Format menu, and named "Background Color. A few steps further down than in Pages. Apache OpenOffice has it in the same place. But both also have a hilight icon in the toolbar.
    I didn't fin highlighting or Color fill in Text Edit (v1.8). Might need a further search.
    But this well-equipped party of (one) oscurantist did find a shorter path to highlighting text in Pages '09, cleverly hidden in plain view! See the image below.
    TO hscortez,
    I'm aware that changing the text colour is not highlighting.
    But YeOldMacFan pointed out how to change text colour AND how to change background colour of text, using Character fill, found in the Advanced Options (Pages 5) or the More (Pages '09) tab of the Text Inspector.
    Character Fill fills the space around the character with the chosen colour. As shown above, it's essentially the same effect as dragging a hiliter pen along a line of printed text.
    Unfortunately, whats shown above is the Character fill well on the format bar of Pages '09—right out in the open like the highlighter pen button in LibreOffice, and presumeably in MS Word. I don't have Pages 5 (avoiding it until a few more of the missing features arrive), but I do note that Pages for iOS offers highlight as one of the options in the contextual menu that appears when a block of text is selcted.
    The process appears to be:
    tap twice to select some text.
    drag the handles at each end of the selection to adjust what's selected.
    tap Highlight in the menu that has appeared on the screen.
    One thing missing appears to be colour choice. The default is a 'hiliter yellow'. I didn't see a way to select a different colour.
    "Hopefully, this will make it on their upgrade list. "
    Hope is good, but taking action is useful.
    Pages menu > Provide Pages Feedback > Make your request that this be added to Pages 5. Requests made through Provide ...Feedback go directly to Apple. Comments and questions here are read by users like yourself, and we don't have the ability to change the way the apps work. Not directly,anyway.
    Regards,
    Barry

  • How can I import a .doc (MS Word) with "hidden text" to a new Pages document?

    Without changing the specific text in .doc to non-hidden, nothing but empty line returns comes across.
    I have several .doc files and I am trying to streamline a process.

    There is no hidden text in Pages and if Apple implemented it chances are it would not be the same as Microsoft's.
    There quite a few variations between Pages and MsWord so transferring documents between them is a hit and miss at the best of times.
    Peter

  • Newbie needs InDesign CS5 help: text overflow into new page

    Hello...  so, I've been using InDesign CS5 to create a document, because it transfers nicely into the pdf format.  I had written most of the stuff a couple months ago, am transferring it to InDesign via copy and paste, and then have to go in an "re-do" the bolds and italics and hyper links etc, b/c it does not transfer those things to InDesign.  I can live with that.  However, with this 10+ page document, how can I copy all my text and paste it onto 10 pages+ of InDesign, rather than piece-by-piece on a page-by-page basis?
    As of now, I have to take the first page of my original, and then copy and paste and estimate, add and subtract until the sizing is right...  and then I have to do that with page 2...  and page 3... and page 4.. and... well, you get the idea.  More than 10 pages of this!  Now, the straw breaking this camel's back is the fact that I have to go in and do a revision in one part...  so that I have to move and shift part of page 2 to page 3, and page 3 to page 4, and page 4 to page 5, and...   ahhhhhhhhhhhhhhhhh!!! 
    Is there ANY way to get text to simply overflow from one page to the next?  When you try to drag a text box down to the next page you've added, it stops at the bottom of the page and will not let you flow into the next page.  I am not particularly tech savvy and don't know coding or html or etc.  I am looking for a way to allow text to flow from one page to the next as if you were writing a Word doc.
    I have 80 more pages and 7 more documents to do this with.  Please help!  I want to cry at the thought of dealing with this in every single 8 to 12 page document I'm recreating. 

    All is not lost for autoflow even using copy paste. Here's a nifty little trick that will help you:
    ID does not require a text frame before you paste, so if you don't start with one, or don't use the one you've already drawn, ID will conveniently draw a 2" square text frame in the center of the screen if you issue a paste command. This frame will contain all of the copied text, but most of it will be overset (you'll see a red plus sign inthe "out port" on the lower right of the frame).
    Overset text can be picked up and flowed using autoflow, just as if you were placing a text file, so use the selection tool (black arrow) to select that small text frame if it isn't already selected, then click the red plus sign to pick up the overset. You should now have a loaded text cursor that looks sort of like the upper left corner of a page. DON'T click it anywhere yet.
    First press backspace to delete the small text frame (which should have remained selected). Now you can start your auto-flow holding the Shift key and clicking your loaded cursor wherever you like. All of the text, including what was visible in the now deleted frame is in the cursor waiting for you.

  • How to display APEXIR_MAX_ROW_COUNT /APEXIR_NO_DATA_FOUND in a text item?

    Hi,
    can I display APEXIR_NO_DATA_FOUND_MSG or APEXIR_MAX_ROW_COUNT in a text item on a page?
    I tried to do that but it wasn't working, I used a display only text element.
    Thank you!
    BR
    Lena
    Edited by: desguazar on 11.11.2009 01:45

    Thanks V361,
    I was hoping to avoid adding a table to the DB with each hour.  I thought there might be a tricky way using arrays that I would be able to accomplish the report.  I have done a test using Excel and I can get the results that I wanted, so I will now probably add the table to the DB.
    Thanks for your input.

  • Using Page Text Item in an Authorization Scheme

    Hello,
    I will be having a text item is every page say, Px_RESP_ID (hidden and its value set in an earlier page), and want to use its value in an authorization scheme to verify if the user has an access to the page.
    I'm using the following SQL in the authorization scheme -
    Apex Version: Apex 3.2
    Scheme Type: Exists SQL Query
    SQL:
    SELECT 1
    FROM zs_users zu
    , zs_responsibilities zr
    , zs_user_resp_groups zur
    WHERE
    zu.user_name = :APP_USER
    AND zr.resp_id = '&P'||:APP_PAGE_ID||'_RESP_ID.'
    AND zu.user_id = zur.user_id
    AND zr.resp_id = zur.resp_id
    For some reason this approach is not working. Any ideas to help me move forward will be greatly appreciated.
    Regards,
    Seshu

    AFAIK an application item, or maybe a page 0 item, is the only way to do this (as those items effectively exist across all pages of an application). Unfortunately since authorization schemes are application-level, you can't really effectively reference page items at runtime since you aren't necessarily on that page.
    The other option is an ugly one. Instead of creating one auth scheme (e.g.: "user_has_whatever_authority"), create one for every page (e.g.: "user_has_whatever_authority_1", "user_has_whatever_authority_2", etc.) and attach each auth scheme to each page by matching up the number in the name with the page. But this is a maintenance nightmare and terrible style IMHO, but it'll work. Your colleagues will hate you for it when you're gone though.

Maybe you are looking for

  • Commenting via iPod in iTunes store: lost text if nickname already taken

    I'd like to report a bug that really bugs me. I'll also send this to some Apple support address but would like to inform the community as well. Also to see if I'm the only one or if I'm doing sth wrong. On my iPod Touch 3G (3.1.3, Darn!), when I want

  • Will Time Capsule also back-up an external drive?

    I have a Time Capsule which I originally bought thinking it was both a back-up and extra memory device. I now also have an iomega network hard drive, and so need Time Capsule to back-up both my hard drive AND this external drive. Yet i can't seem to

  • Modify Primary Key Value while present in child tables

    Hi, I have one master table having primary key "ESTNO" and 10 child tables having ESTNO as the part of their primary key / composit key. I need to update the value of ESTNO in a master and associated child tables. what should i do to accomplish this.

  • Screen Exit in Transaction LM50

    Hi Experts, I created a screen exit for transaction LM50 (Count Inventory By System Guided). I created the subscreen SAPLXLRF 7152 because i need to add a field, this screen replace screen 2152. In transaction CMOD i created and activated a new proje

  • SNOTES

    Hi, When I open SNOTES and click on a Note to view, the following error occurs : ADS: com.adobe.ProcessingException Problem accessing d(200201) Message : FPRUNX001 Has any one seen this before? Tks Christiaan