How to change page type after the fact

In the application builder, I click on an application and choose Details in View.
I get the list of pages I have in my app.
The page type column has:
Interactive Report
Navigation Form
Dynamic HTML
DML Form
Chart
Report
How do I change this column after a page has long been created?
Specifically, I want to the change "Dynamic HTML" to something else.
Why?
Because on this particular page, tabs do not work (error: page not found).
Buttons created among a regions items do not work (same error, page not found).
I need to use tab and buttons to go from this page to other pages.
And I am suspecting the page type may have something to do with my problem.
Thanks in advance for any pointers.

Thanks for your consideration!
For my current app, a clinical management system,
I'd like to have, say, 1000 items.
(For other applications I am thinking about, but have no time,
nor expertise for now, I'd need millions of items,
each corresponding to a pixel of a graphic.)
Who cares if the current computers are too slow?
How about make it a parameter that can be changed
per app or per apex installation, and default to 100?
Some forms can be broken up logically, as people have helpfully suggested,
and I did follow that advise on some pages.
But other forms cannot be. People have put a lot of thought on designing
those forms, they are government or legal standards (or at least something more important
than computer performance), and people have been trained
with those original forms.
Consider the hoops I have to jump through to get more than 100 items
on a page I am currently working on:
Generate the items (INPUT type="text" and INPUT type="checkbox") using PLSQL
lots of htp.p('<INPUT ...>').
a JavaScript function to collect all the values on the page
and make up an XML string. submits this string to an application
process, and application process parses the XML string and does insert or update.
Another JavaScript to populate the items based on the current values of a row,
using an application process to retrieve the columns of a row.
There are about 150 items on this particular page.
All these are ok, because I was aware of the restriction of 100.
And because I wanted to generate my own HTML to mimic the original
form anyway.
Then things started to go weird.
I need buttons to go back to another page. and I use tabs.
Buttons to go back from this page,
when a button is created with "Create a button in a region position",
it works fine.
When a button is created with "Create a button displayed among this region's items",
it does not work, and I get HTTP 404, https://.../apex/wwv_flow.accept, page cannot be found.
But I need a button to work like the one created with "Create a button in a region position",
but displayed like the one created with "Create a button displayed among this region's items".
This is still not too bad. I saw the difference between the two kinds of buttons.
I copied the HTML code for the button "Create a button in a region position",
and used a display only item to create a Back button where I wanted:
'<table class="t15Button" cellspacing="0" cellpadding="0" border="0"><tr><td class="t15L"><img src="/i/themes/theme_15/button-l.gif"/></td>'||
'<td class="t15C">Back</td>'||
'<td class="t15R"><img src="/i/themes/theme_15/button-r.gif"/></td></tr></table>'
Here P145_BACK holds the page number to which I want this page to go back to.
Then I noticed that the tabs did not work any more. same error, page not found.
That's is when I got a little frustrated and posted for help on the forum.
Then I begin to undo my steps, and
by lucky accident, I noticed that, if none of the checkboxes is checked,
the tabs work fine. If at least one is checked, I get this error, page not found.
My current solution is to add a function of my own in the doSubmit(B) function in file apex_3_1.js,
which unchecks all checkboxes (o.checked=false).
And now, from this page of about 150 items,
the tabs are ok, and I have a button that is similar to one
created with "Create a button displayed among this region's items", except I created myself
using HTML.
I think this trick of using a custom function in doSubmit(), that unchecks or even hides
INPUT type="text" items (o_div.style.visibility = "hidden"; o_div.style.display = "none";)
should work in general. this function is only invoked when the user clicks the tab,
or buttons among a region's items.
Somebody said regarding restrictions on drugs or sex.....
you will not make people stop, you just make it harder or more expensive.
Same here and many other things, a restriction is just making things harder.
People will try to get around it.
Now that I have a solution, and I am aware of the problem, I'll calm down and
go back to my own thing for now.

Similar Messages

  • Changing the document page size after the fact.

    Does anyone know of a way to change the page size globally after the fact?
    I have sent a 200 page book created with Pages '08 to my printer. The work has a full bleed watermark in the background on a custom 7" X 11" document. I've just been informed that he needs to increase the paper size to 7.25 X 11.25 and have me increase the watermark so it can be trimmed down.
    Is there a way to change all 200 pages or do I need to set-up a new document and do a whole lot of cut and paste?
    Thanks in advance everyone.

    Your problem is that the change is not proportional.
    However it is not a great change, 6.66% at most. If you don't mind a subtle change in height vs width, just create a pdf of the entire document and tell the printer to change the size on going to plate.
    Alternatively you can simply scale it up the 6.66% which will make the height about 0.5" too high and trim away the excess.
    The other way is only scale it up 2.27% which gives you the right height but leaves you with 0.1" less width.
    Or you can go in between and have a compromise for both directions by scaling up 4.4%.
    It depends if you have white margins in either direction that can take up the slack and also how much bleed you have on the watermark. You only need 1/8" to cover any trimming errors.
    As this appears to be quite a long book and would need to be imposed up in signatures, I would imagine the printer must have the necessary imposition software to allow for creep etc, which should also allow for non-symmetrical scaling.
    Don't you Americans ever feel at moments like these that you wish you weren't the last people in the world to not use metrics and rational paper sizes?

  • HOW TO: Change page size after page is created?

    Is there a way to change the size of a page after the page has been created? In the documentation, the only way I have seen to set the page size is in a "with" statement right after creating the document. I have need to change the size of the document after a document has already been created. Any ideas?

    Yep, that's how I am doing it. I just wanted to make sure that I was doing it correctly. I need to keep debugging then and figure out what the real problem is. I am new to all of this (obviously) and I just needed to make sure I had the idea correct. I didn't mean to use document and page interchangeably, I understand that you can't have different size pages in the same document.
    Thank you for your help.
    [FYI]I created a class that creates a document with most of the document settings that I use (e.g. a standard number of pages, non-facing pages, units in inches, etc.) but I don't specify a page size, that's something that varies between documents, so I figured I could just apply that after I have created the page. The problem is, when I try to create multiple documents it doesn't work. The script will create the first document using the default page size settings and I can't get it to change the page size, but then the next document will be created using the page size I tried to apply from the previous document that the script created. I am sure this is totally a coding error somewhere else. I will try to track it down. Just when I think I have this stuff figured out . . .

  • How to change Font Type of the Title Text of a JFrame?

    Hi,
    I want to set a different Font Type for the Title text of the titlebar of my JFrame.
    Is it possible? Can anyone show me how if it is?
    Thanks.
    Niteen

    Michael,
    Thanks. It works!
    But there was a problem. I was not using the :-
    JFrame.setDefaultLookAndFeelDecorated(true);
    so I have to use it now.
    Is it possible to do it without the default decorated look and feel? Because the default LNF title bar has too much height and I am cramped for space.
    I know that's no excuse. I tried but it doesn't work.. I am using a extended JFrame like this:-
    class Testing extends JFrame
    public Testing()
    setSize(300,100);
    setLocation(400,200);
    Container container = getContentPane();
    /* add components to this container here */
    setVisible(true);
    When I use getComponent() for the container, I get an ArrayIndexOutOfBound Exception.
    When I set the argument to getComponent(0), the font in the title bar is not changed.
    What else should I do?
    Thanks.
    Niteen.

  • Changing Layouts After-the-fact

    Hi All-
    I am rebuilding my company's website on our server where
    previously it was outsourced, designed and hosted by another
    company. I feel that this is a huge undertaking ... and my boss
    thinks it should be easy. He wants me to look at the site that is
    online now and transfer the images, info, etc over to Dreamweaver.
    Anyone have any advice?
    Anyway, my question is this:
    When I started building the homepage I used the the
    "twoColLiqHdr" page layout (where the sidebar is on the left and
    the paragraph content is on the right). I want to change this so
    that the sidebar is actually on the right and the content on the
    left of the page. Can I change this since it is after the fact? If
    so, how?
    Thanks.

    This is a multi-part message in MIME format.
    ------=_NextPart_000_0024_01C97FAA.A1ADCE60
    Content-Type: text/plain;
    charset="Windows-1252"
    Content-Transfer-Encoding: quoted-printable
    If you used a Dreamweaver template, you can modify the
    template and =
    update the child pages instantly. If you didn't, I would
    recommend you =
    create a Dreamweaver template with the styles you wish and
    use Apply =
    Template to page to update the child pages. You will probably
    have to =
    adjust some of the content accordingly.
    --=20
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: Dreamweaver CS3: The Missing Manual,
    DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide
    Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web =
    Development
    "lorentza" <[email protected]> wrote in
    message =
    news:[email protected]...
    > Hi All-
    >=20
    > I am rebuilding my company's website on our server where
    previously it =
    was=20
    > outsourced, designed and hosted by another company. I
    feel that this =
    is a huge=20
    > undertaking ... and my boss thinks it should be easy. He
    wants me to =
    look at=20
    > the site that is online now and transfer the images,
    info, etc over to =
    > Dreamweaver. Anyone have any advice?
    >=20
    > Anyway, my question is this:
    >=20
    > When I started building the homepage I used the the
    "twoColLiqHdr" =
    page layout=20
    > (where the sidebar is on the left and the paragraph
    content is on the =
    right). I=20
    > want to change this so that the sidebar is actually on
    the right and =
    the=20
    > content on the left of the page. Can I change this since
    it is after =
    the fact?=20
    > If so, how?
    >=20
    > Thanks.
    >
    ------=_NextPart_000_0024_01C97FAA.A1ADCE60
    Content-Type: text/html;
    charset="Windows-1252"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Dwindows-1252">
    <META content=3D"MSHTML 6.00.6000.16788"
    name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY bgColor=3D#ffffff>
    <DIV><FONT
    size=3D2></FONT> </DIV>
    <DIV>If you used a Dreamweaver template,  you
    can modify the =
    template and=20
    update the child pages instantly.  If you didn't, I
    would recommend =
    you=20
    create a Dreamweaver template with the styles you wish and
    use Apply =
    Template to=20
    page to update the child pages.  You will probably
    have to adjust =
    some of=20
    the content accordingly.</DIV>
    <DIV> </DIV>
    <DIV><FONT size=3D2><BR>-- <BR>Nancy
    Gill<BR>Adobe Community=20
    Expert<BR>Author:  Dreamweaver 8 e-book for
    the DMX=20
    Zone<BR>Co-Author:  Dreamweaver MX: Instant
    Troubleshooter (August, =
    2003)<BR>Technical Editor:  Dreamweaver CS3:
    The Missing=20
    Manual,<BR> DMX 2004: The Complete
    Reference,  DMX 2004: A =
    Beginner's=20
    Guide<BR> Mastering Macromedia
    Contribute<BR>Technical Reviewer: =
    Dynamic=20
    Dreamweaver MX/DMX: Advanced PHP Web
    Development<BR></FONT></DIV>
    <DIV> </DIV>
    <DIV><FONT
    size=3D2></FONT> </DIV>
    <DIV>"lorentza" &lt;<A=20
    href=3D"mailto:[email protected]">[email protected]=
    </A>&gt;=20
    wrote in message <A=20
    href=3D"news:[email protected]">news:gll2p1$p4c$1@forums=
    .macromedia.com</A>...</DIV>&gt;=20
    Hi All-<BR>&gt; <BR>&gt; I am
    rebuilding my company's website on =
    our server=20
    where previously it was <BR>&gt; outsourced,
    designed and hosted by =
    another=20
    company. I feel that this is a huge <BR>&gt;
    undertaking ... and my boss =
    thinks=20
    it should be easy. He wants me to look at <BR>&gt;
    the site that is =
    online now=20
    and transfer the images, info, etc over to <BR>&gt;
    Dreamweaver. Anyone =
    have any=20
    advice?<BR>&gt; <BR>&gt; Anyway,
    my question is this:<BR>&gt;=20
    <BR>&gt; When I started building the
    homepage I used the the =
    "twoColLiqHdr"=20
    page layout <BR>&gt; (where the sidebar is on the
    left and the paragraph =
    content=20
    is on the right). I <BR>&gt; want to change this so
    that the sidebar is =
    actually=20
    on the right and the <BR>&gt; content on the left
    of the page. Can I =
    change this=20
    since it is after the fact? <BR>&gt; If so,
    how?<BR>&gt;=20
    <BR>&gt; Thanks.<BR>&gt;
    </BODY></HTML>
    ------=_NextPart_000_0024_01C97FAA.A1ADCE60--

  • TS2446 I changed my password after the acct. being disabled.  It is still not working.  How long does it take?  And how do I make it work again?

    I changed my password after the acct. was disabled.  We had to dispute some charges and got it worked out.  The new password won't work and thats what we were told to do.  How long does it take for the new password to take effect?  And is there something else we should do?

    Contact itunes support

  • When i open my Canon RAW-files with preview or transfer them to another program using preview they change to color despite the fact that they where all shot in B/W... How to change this?

    When i open my Canon RAW-files with preview or transfer them to another program using preview they change to color despite the fact that they where all shot in B/W... How to change this?

    I shoot only RAW - no JPEG-files except those visualizing the files on my memorycard or computer. I think i have to refine my question;
    1. I know there is possible to make B/W HDR-images.
    2. I know the best HDR images are based on RAW-files.
    3. When i transfer the images in question to a HDR software they change, so when i view them in the software (either Preview or the HDR software) they are suddenly viewed (and processed) in color.
    4. This never happend on my PC so i know it has to do  with either Finder or Preview.
    5. Do i have to make all my B/W HDR-images on the PC or is it a way for me to change how Finder/Preview show/alter my images?

  • When I use Photoshop CS 6 to edit video, I don't know how to change video speed after I converted the clip to smart object?

    When I use Photoshop CS 6 to edit video, I don't know how to change video speed after I converted the clip to smart object? The clip color turns purple and it only allows me to add motion but not change the clip duration and speed anymore.

    Thanks for the reply and as a work around method I used the Photoshop to do all the adjustments then export the video to iMovie to finish the final cut. I also have a problem to paint or clone on a blank video layer created in Photoshop. It tells me the time is beyond the target frame time, I don't understand the message. Can you explain to me what did I do wrong? Thanks a lot!
    John Wang
    801-3618742
    [email protected] 
    http://johnwanggallery.shutterfly.com  

  • When I import a CD album that includes songs with co-artists, the album is saved once with all of the songs with the main artist only, and then one album for each song with a different co-artist.  How can I avoid that or fix that result after the fact.

    When I import a CD ablum that includes songs with co-artists, the album is saved once under the album name with all the songs from the main artist; then each song with a different co-artist is saved separately under the album title with just that song.  Who do I prevent that or fix it after the fact, i.e., copy the single songs to the main album?

    Why aren't songs with the same album art grouped together? - http://support.apple.com/kb/ts1468
    Compilation checkbox is under options tab when editing multiple tracks at once.
    https://discussions.apple.com/thread/4559720 - discussion of using compilation vs. album artist to group tracks
    Jan 2014 discussion: https://discussions.apple.com/thread/5775641

  • How to Change Paper Type Using Java script

    HI ,
    We have a requirement , in which we have to change the paper type i.e. "A2" , "A3","A4" etc.  while printing using a JavaScript. I have written a code like this :
    xfa.form.form1.pageSet.Page1.medium.stock = "A2"; But this is not working. please help me out.
    Thanks,
    Bhaskar.

    That's the right object for choosing the page size at Design time. What event are you doing this on? Although you can change it in the form model, the form's page size is already determined from the template by the time you have a form to script against, so although you can change it via script after the fact in XFA, I don't believe it will have any impact. Even putting it on the layout ready event does not work.

  • Changing doc. type after creating a doc. type.

    Hi Friends,
    We are doing our time ageing from the time of creating the document in DMS. We created a document with particular doc. type wrongly, after two days we found that the DMS creation was done with wrong doc. type. In this how to transfer to new correct doc. Type, if we delete this & create a new we canu2019t get any info that it was created two days back.
    We made Z report for this time ageing report.
    Regards,
    Sai Krishna

    You cannot change the document type after the document has been created. The only way to do this would be with an enhancement and this would create major issues with the integrity of your system

  • How to change light type?

    Does anyone know how to change light type?
    What happens is that I have a button that I would want to create a Point light, but it just create a spot light.
    Does anyone know how to change it to create a point light?
    My code is:
    //Add a Point Light to active Comp
           addLightCtrl.onClick = function(){
               var pointLight = proj.layers.addLight("Light", [960, 540]);

    See the LightLayer object's lightType attribute. Page 100 of the AE CS6 scripting guide.
    pointLight = activeItem.layers.addLight("Light", [960, 540]);
    pointLight.lightType = LightType.POINT;

  • Proxy media created after the fact

    In another thread I was trying to find out why my multicam clips were frozen in place in the angles viewer while I edited them in the timeline. One reader's suggestion was to convert the clips making up the multiclips into proxy media. I did so; right-click on clips and select "Transcode media..." then "Create Proxy Media." That all worked as it should (though it did not remedy the angles viewer problem) however what I'm wondering now is just what did I do to my project? I just blindly transcoded to proxy but what does that mean to the edit I'm doing? How does this affect eventual output? Could someone please explain the ramifications of this action?
    alan b

    Just creating proxy media does nothing to your project.
    I suppose you also changed the preferences to use proxy media (Preferences->Playback, "Use proxy media"), otherwise you'd still be using the original or optimized media all the same.
    All the edits you make are preserved, whether you work in proxy or not.
    The usual workflow when you need proxy is simple:
    1) create proxy media if you haven't already (as you did)
    2) switch to proxy media in preferences (as I suppose you also did)
    3) when finished, switch the preferences again ("Use origina/optimized media") so that the final export is done in full quality. (In the meantime you can of course export "draft" versions in proxy mode)
    Note: if you switch proxy *before* creating proxy media for all the clips, you'll get the "offending" clips appearing in red with a yellow warning; if that happens, just create the proxy media after the fact and everything will be fine.

  • HOW TO CHANGE ACCOUNT TYPE FROM IMAP TO POP

    HOW TO CHANGE ACCOUNT TYPE IN YOUR EMAIL FROM IMAP TO POP

    You can't.  You need to create a new account in Mail.
    Note, when setting up a new account (after clicking the '+' in the Accounts proeference), enter an invalid email address or option click the Continue button to be given the choice of account type (POP or IMAP).

  • How to change data type of attribute in caf

    hi.
    this is my problem.
    i been added a attribute in an entity service called emloyee. named "Birthday", use the data type "com.sap.caf.core.date".
    when i tried modify the entity service, i hit exception about "DST Daylight Saving Time".
    because of DST, the date will add an hour such like "1957/04/01 00:00:00.0" to "1957/04/01 01:00:00.0", and com.sap.caf.core.date will throw an exception.
    is anyone had same problem like me?
    how to fixed it(if passable)?
    and, how to change data type?
    thanks.

    Hi Sruthi,
    all you need to do on this is open the report go to the parameters, select the parameter that you wish to change and click "Edit". This will allow you to change thefield to a date rather than a date time.
    Regards,
    Noel

Maybe you are looking for

  • HELP URGENT How do I use an activation key to re-activate my 30 day trial ?

    I am asking this question on behalf of my sister-in-law who is on dial up in a rural area and recently purchased an iMac with the 30 day trial of i-work. She purchased an activaion key on line but does not know how to re-activate the existing softwar

  • Message from PE is incomplete. No Sender found

    Hello, Transaction SXMB_MONI shows three messages. The first two are sent to integration process IP_PORDCR1, the third is received from integration process IP_PORDCR1. The last message has a sender interface MI_IDOC_PORDCR1, but no sender service. Th

  • Using built-in function in the definition of relation between two blocks...

    Hi , Is it possible to define a relation between two form blocks(db based) .... I have a master table such as: table : strdet (cols: ms varchar2(10) , det varchar2(10)) materialized view : mv (cols : det varchar2(10) , sum_a number(5), sum_b number(5

  • Storing an "indicator" to control behaviour during submit()

    Hello, I'm developing a JSF page in which I need to access some data from a database and use the data to control the GUI (components) behaviour as well as behaviour during submit(). I have a backing bean for my JSF page and bound a number of GUI comp

  • What happened to the Line Tool {from Elements 4}

    I have upgraded? From Photoshop Elements 4 to Photoshop Elements 12. Now running on a new Mac Mini. OS-X 10.8.5 I used Elements 4 - 99% of the time, to add text comments, and then Draw a line with arrows at the beginning or end of the line. {to point