Partial page after wake up

When I attempt to unlock my MacBook Pro after its been asleep, I get only a partial screen with the screen saver still visible. Sometimes its the upper right quater of the screen, sometimes the screen saver photo stays on the screen but as I move the pointer the screen were the pointer was turns to the appropriate gray matted color of the log in screen. Ive attached below a jpg of the screen I had today. Its not a permanent show stopper but its kind of odd, can anything be done about it?
sunt
PS No Im not Canadian...

Thanks for the input, that seems to have solved the problem. I searched the community for an answer but I geuss I used the wrong terms. Have a good one, appreciate your help.
Sunt

Similar Messages

  • ADF partial page updates fails after changing the JSESSIONID name

    Hi All.
    I'm using Human Task WorkFlow (11g, wls 10.3.4).
    I changed session-descriptor to WORKLISTAPPSESSIONID of woklistapp application and my deployed TaskFlow.
    After that ajax partial pages updates fails with java.lang.NullpointerExpcetion in the log.
    I think ajax based code does not use session-descriptor element (in the weblogic.xml) to determine the session id cookie name.
    And i cant find where and what i have to modify?
    Guys, please, help.
    Oleg.

    repost
    --

  • Partial page refresh is not working in APEX 4.0

    Hi All,
    I have a report region in my application,I have selected the following properties for the region,
    Pagination scheme - Row ranges X To Y (with next and previous links)
    Enable partial page refresh - yes
    Display position - bottom -right
    Their is an arrow mark link(next /previous) in the right bottom corner,when i click on that ,the region is displaying the next 15 rows, but the region is not getting refresh,the scroll bars are al went off if i click the previous/next link.
    After that i refreshed the page by clicking F5 ,scroll bar is appearing now.
    In the region header and footer i have added this code,
    <div style="overflow:auto;">
    </div>for scroll bar
    Please some body help me to fix this issue..
    Thanks & Regards,
    Ramya.
    Edited by: Ramya on Apr 15, 2012 10:42 PM

    Hi All,
    I fixed this issue.
    I used Skillbuilders modal popup plugin, to open the form page as popup when i edit the record.To implement this plugin i have already created dynamic action for edit ,create and autoclose the popup.
    In the dynamic action i changed the EVENT SCOPE from BINT To LIVE and tested the application.Now its working fine.
    I can able to edit the record after i hit the next/previous pagination link .
    Thanks ,
    Ramya.

  • Force external drive to remain in stand by after Wake up

    I have a WD My Book external drive connected to my iMac 27" via USB 3.0
    The drive is initially in a stand by mode (drive doesn't spin, it's visible in disk utility).
    Now when backup script starts, it first checks to see if drive is mounted. If it's not it then mounts it (drive begins to spin), then the backup process starts, and lastly the disk is ejected (drive stops spining, it's again in standby)
    All this works, however my problem is when my mac wakes from sleep, drive automatically starts to spin and is mounted. I want the drive to always remain in stand by except from when it is manually mounted.
    How can I achieve such a thing? I have tried the folowing:
    Disabling the USB Mass storage: requires restart and results in all USB ports being disabled, which is unaccepted
    Setting the drive to "Power up in Stand By feature" with linux command "hdparm": Even tho hdparm says the disk supports this feauture, I've got I/O error
    Setting the jumper to proper position to enable PUIS: the white lid is switched on, but nothing happens (not visible in disk utility)
    Adding the line in /etc/fstab to prevent auto mounting, which partially works. (drive still spins after wake up)

    Thanks for your reply.
    There is only the spinning wheel in the finder sidebar when it is actually backing up.
    Not after it has finished according to the progress bar in TM Preferences. When that has finished, the Hard Drive just carries on gurguling and ticking.
    Until I drag the volume icon to the trash then it stops. AND I have just noticed the wheel starts spinning in the finder window after I have done this and it starts backing up again. It does not eject but I get a notice saying " Is in use could not be ejected. Try quitting applications and try again." (well I do have applications open). Then after this back up all is quiet. But the cycle starts off again after the next sheduled backup starts.
    I can not see anything called backupd in activity monitor while the noise is current.
    The only activity seems to be from "Activity Monitor" "Finder" "System Preferences" "SystemUIServer"
    In 'Console' under All Messages it says Backup Completed succesfully. followed by
    kernel............SetCryptoKey R: len 32, idx 1
    Sorry I can't make things any clearer.

  • Event handler when using partial page refresh ?

    Hi
    I have a calendar, which uses partial page refresh. The problem is how to make javascript wait until the calendar has loaded and then do some updates on the calendar (after the user has pressed the next button that runs apex.widget.calendar.ajax_calendar('S','next');, for example ). I thought I could add "onreadystatechange" (or onload) event handler to the calendar like this: onreadystatechange="checkState()", where the function would check the state and if ready then do the updates. This doesn't work. Could somebody please tell me why not ?
    Tiina

    Hi,
    It seems that ajax calendar missing event apexafterrefresh.
    I do not know is this "bug" or just feature.
    That event would be useful to your case , if I understand correct what you looking for.
    For workaround , you can over write original function by placing this to calendar region footer
    <script>
    apex.widget.calendar.ajax_calendar=function(p_calendar_type, p_calendar_action, p_calendar_date, p_calendar_end_date){
    var l_cal_type_field = $v('p_cal_type_field_id');
    var l_cal_date_field = $v('p_cal_date_field_id');
    var l_cal_end_date_field = $v('p_cal_end_date_field_id');
    var l_cal_id = $v('p_calendar_id');
    var l_calendar_region = 'calendar' + l_cal_id;
    if ( p_calendar_type != 'C' ){
      $s(l_cal_date_field,$v('p_calendar_date'));
    }else{
      if ( $v(l_cal_date_field) == '' ) {
       $s(l_cal_date_field,$v('p_calendar_date'));
      if ( $v(l_cal_end_date_field) == '' ) {
       $s(l_cal_end_date_field,$v('p_calendar_end_date'));
    // create and apex.ajax.widget object
    var a = new apex.ajax.widget('calendar',function(){
      /* start the return function */
      if(p.readyState == 1){
       document.body.style.cursor = "wait";
      }else if(p.readyState == 2){
      }else if(p.readyState == 3){
      }else if(p.readyState == 4){
       $x(l_calendar_region).innerHTML = p.responseText ;
       $s(l_cal_date_field,$v('p_calendar_date'));
       if (p_calendar_type == 'C') $s(l_cal_end_date_field,$v('p_calendar_end_date'));
       document.body.style.cursor = "";
      /* DO HERE THINGS AFTER CALENDAR REFRESH */
      }else{return false;}
    // code for next,previous and today
    if (p_calendar_type == 'S'){
      p_calendar_type = $v('p_calendar_type');
    }else{
      $s(l_cal_type_field,p_calendar_type);
    a.ajax.addParam('p_widget_mod',p_calendar_type);
    a.ajax.addParam('p_widget_action',p_calendar_action);
    a.ajax.addParam('x01',l_cal_id);
    var lDate = (!!p_calendar_date && p_calendar_date !== '')?p_calendar_date:$v(l_cal_date_field);
    if (p_calendar_type == 'C') {
      var lendDate = (!!p_calendar_end_date && p_calendar_end_date !== '')?p_calendar_end_date:$v(l_cal_end_date_field);
    a.ajax.add(l_cal_date_field,lDate);
    if (p_calendar_type == 'C') a.ajax.add(l_cal_end_date_field,lendDate);
    a.ajax.addParam('x02',lDate);
    if (p_calendar_type == 'C') a.ajax.addParam('x05',lendDate);
    a.ajax.add(l_cal_type_field,p_calendar_type);
    a._get();
    </script>Where I have comment *"do here things after calendar refresh"*, you can hook own scripts.
    Of course this is not best way, but might help you till ajax calendar support dynamic actions fully
    Regards,
    Jari
    Edited by: jarola on Oct 20, 2010 3:11 PM

  • ADF Faces : simultaneous partial page rendering

    hi
    I'm wondering what I can expect from "simultaneous partial page rendering".
    I would like to have some af:selectOneChoice components on a page, with next to them some related information about the selected value.
    This example application, created using JDeveloper 10.1.3.3.0, does this using partial page rendering (check README.txt):
    http://verveja.footsteps.be/~verveja/files/oracle/SimultaneousPPRApp-v0.01.zip
    It as a pprPage.jspx with these components ...
              <af:panelPage title="pprPage">
                <af:panelHorizontal>
                  <af:commandButton text="some button"/>
                  <af:objectSpacer width="10" height="10"/>
                  <af:outputText value="requestCounter.value = #{requestCounter.value}"/>
                </af:panelHorizontal>
                <af:panelHorizontal>
                  <af:selectOneChoice label="selectOneChoice A"
                                      id="selectOneChoiceA" autoSubmit="true"
                                      binding="#{backing_PPRPage.selectOneChoiceA}"
                                      valueChangeListener="#{backing_PPRPage.onChangeSelectOneChoiceA}">
                    <af:selectItem label="null value label"
                                   value="#{null}"/>
                    <af:selectItem label="first choice label"
                                   value="first-choice-value"/>
                    <af:selectItem label="second choice label"
                                   value="second-choice-value"/>
                    <af:selectItem label="third choice label"
                                   value="third-choice-value"/>
                  </af:selectOneChoice>
                  <af:objectSpacer width="10" height="10"/>
                  <af:outputText value="#{backing_PPRPage.selectOneChoiceARelatedValue}"
                                 partialTriggers="selectOneChoiceA"/>
                </af:panelHorizontal>
                <af:panelHorizontal>
                  <af:selectOneChoice label="selectOneChoice B"
                                      id="selectOneChoiceB" autoSubmit="true"
                                      binding="#{backing_PPRPage.selectOneChoiceB}"
                                      valueChangeListener="#{backing_PPRPage.onChangeSelectOneChoiceB}">
                    <af:selectItem label="null value label"
                                   value="#{null}"/>
                    <af:selectItem label="fourth choice label"
                                   value="fourth-choice-value"/>
                    <af:selectItem label="fifth choice label"
                                   value="fifth-choice-value"/>
                    <af:selectItem label="sixth choice label"
                                   value="sixth-choice-value"/>
                  </af:selectOneChoice>
                  <af:objectSpacer width="10" height="10"/>
                  <af:outputText value="#{backing_PPRPage.selectOneChoiceBRelatedValue}"
                                 partialTriggers="selectOneChoiceB"/>
                </af:panelHorizontal>
                <af:outputText value="userAgentHelper.info = #{userAgentHelper.info}"/>
              </af:panelPage>... and has a backing bean like this ...
    public class PPRPage
         public String getSelectOneChoiceBRelatedValue()
              return "some " + fSelectOneChoiceB.getValue() + " related value"
                   + ", requestCounter.value = " + ELHelper.get("#{requestCounter.value}");
         public String getSelectOneChoiceARelatedValue()
              return "some " + fSelectOneChoiceA.getValue() + " related value"
                   + ", requestCounter.value = " + ELHelper.get("#{requestCounter.value}");
         public void onChangeSelectOneChoiceA(ValueChangeEvent pValueChangeEvent)
              // simulating a slow operation/response
              try
                   Thread.sleep(2000);
              catch (InterruptedException ex)
                   ; // ignore;
         public void onChangeSelectOneChoiceB(ValueChangeEvent pValueChangeEvent)
              // nothing here to slow things down
    }It is important to note that changing the value for the "selectOneChoice A" dropbox has some time consuming operation to perform (possibly calculating/querying the related information to show next to it).
    Using IE 6 ("userAgentHelper.info = ... MSIE 6.0 ..."), this behaves like this:
    (ie-1) Run pprPage.jspx in JDeveloper, which results in a page that shows this:
    selectOneChoice A [null value label] some null related value, ...
    selectOneChoice B [null value label] some null related value, ...(ie-2) Select "first choice label" from the "selectOneChoice A" dropbox and immediatly after that select "fourth choice label" from the "selectOneChoice B" dropbox, which results in a page that shows this:
    selectOneChoice A [first choice label] some first-choice-value related value, ...
    selectOneChoice B [fourth choice label] some null related value, ...(ie-3) Select "second choice label" from the "selectOneChoice A" dropbox, which results in a page that shows this:
    selectOneChoice A [second choice label] some second-choice-value related value, ...
    selectOneChoice B [fourth choice label] some fourth-choice-value related value, ...Using Firefox 2.0 ("userAgentHelper.info = ... Firefox/2.0.0.12"), this behaves like this:
    (ff-1) Do the same as in step (ie-1), which has the same result as step (ie-1).
    (ff-2) Do the same as in step (ie-2), which results in a page that shows this:
    selectOneChoice A [first choice label] some first-choice-value related value, ...
    selectOneChoice B [fourth choice label] some fourth-choice-value related value, ...
    questions:
    (q1) Why does the related information, for the selected "fourth choice label", not show up in step (ie-2) (as it does in step (ff-2))?
    (q2) Why does the related information, for the selected "fourth choice label", show up in step (ie-3) while the value was only/already changed in step (ie-2)?
    (q3) Does some general approach exist to prevent "simultaneous partial page rendering" behaviour as described in (q1) and (q2)?
    many thanks
    Jan Vervecken

    repost
    --

  • Picture files only partially display after being published

    Recently .jpg and .png pictures I have created only partially display after being published.  I've tested it using Paint, Publisher and Gimp with mixed results. The pictures display correctly when I view them locally on my pc.
    Here are the test pictures I made in each program:
    http://www.bgchamber.net/images/GimpTest.jpg
    http://www.bgchamber.net/images/PublisherTest.jpg
    http://www.bgchamber.net/images/PaintTest.jpg
    The only pictures that fully display are those that were taken from a camera, but after I resized one in paint, it also didn't display properly. My question really is, is this an issue with Microsoft Expression Web or with the server hosting the files?

    Publisher is NOT a photo editing program. Neither is Word. Nor is Paint.
    You need a real, and simple, photo editing program. Paint.NET is a good, free one. I find GIMP cumbersome (but it's batch processing is handy). And your graphics aren't being created and saved properly. For example, the events.html page has graphics on it
    that total well over 3 MegaBytes! Pity the poor soul with a wireless connection. The graphics on the events.html page are largely illegible, and as such serve no real purpose (and make the site look bad).
    Let's take an example...on the home page gallery is a graphic for the 2015 Chamber Scholarship. It's displayed at 525 x 340 pixels, yet the image sitting on the server (and which must be downloaded by the visitor) is 1275 x 825 pixels. So you have an unnecessarily
    large graphic taking space on the server, having to download to the visitor's computer at full size, and then be shrunk by the browser to only 17% of the original area. That file should be created and saved in a proper graphics program at the final size you
    plan to use (and in this case, use PNG format). The larger file takes at least 5 times the storage space on the server as a properly sized file (and takes 5 times as long to download and upload).
    I've superimposed the display size on top of the full size and shrunk them down to display here in the forum. See below.
    All the graphics that I have checked on your site have the same problem, and if your site has been up a long time and you haven't cleaned out the old files on the server, you may have run out of server space, which would corrupt the new files.
    Smaller files will also upload faster and more reliably. Plus--browsers stink at resizing graphics. Do that in a proper graphics program to get the best quality.
    Use JPG for photos, GIF for hard-edge graphics with few colors and no gradations/shading, and PGN for hard-edge graphics with full color and gradations/shading. And make sure you are saving the images in the proper version of the format (RGB for web).
    A horse walks into a bar. The bartender asks "Why the long face?"
    "Because I was born into servitude and when I die my hooves will be used to make glue."
    It was at this point that the bartender realized he would not be getting a tip.

  • Canon Pixma M860 only prints partial pages

    Hi,
    Thanks in advance for your assistance. I had to take my computer in because of several stalling issues, and had to unhook my printer to do so. It was working fine then. When I plugged it back in, the printer won't work properly; it only prints partial pages. I checked the ink supplies, and they are fine. I cleaned the heads, they too are fine. I tried to open the Solution Menu, but it comes up blank. Can you help? I'd sure appreciate it!

    No problems with the response times. I just noticed a huge delay with trying to reply to you and I'm using Firefox.
    Okay, to answer the three replies...
    Question: after this, how will I know where to go to add my printer queue again? I'm sorry, I don't quite know where/how to do this? Do you mean I just try to print some things again?
    I need you to add the printer queue again by opening Print & Fax and clicking the + button under the now empty Printers list. If the printer is connected to the Mac via USB cable then you can select the Default icon and then select the MX860 in the list. This should automatically change the Print Using menu to 'Canon MX860 series'. You can then click Add to complete the printer queue creation.
    If the printer is wireless instead of USB then please let me know as the procedure is a bit different to the above.
    Also, you mentioned that the Solutions Menu isn't really needed. I had just hoped the troubleshooting button it is supposed to have could be of some use in repairing my printer, but it doesn't sound like it from what you say here? If not, that's okay. Just wondering.
    To be honest I've never installed the Solution Menu so I cannot comment on how well the troubleshooting information is. Since I feel I know more than these guides ever provide then I've never felt the need to use them. For you it could be handy but having read other Canon guides I feel that they can confuse the user more than help them...
    They just did the Repair Disk thing and it was better for oh, about a minute. I realize that's not the issue we are discussing; I just mentioned it to let you know I'm responding as quick as I'm able, and just in case you think Safari's weirdness might be affecting the printer somehow.
    At this stage I would say that Safari is not the problem but the sluggish operation you are noticing when using it could be an indication that something is using resources on your Mac and this could also be impacting the printing. In this situation I would suggest a Mac user to check the Activity Monitor. This will show you every little background service that is currently running on your Mac and one or more of these services could be the culprit. An example would be the previous printer software. With older drivers many vendors install services with their drivers to provide users with information, such as ink status, because the then current OS did not provide them. This is fine when you have that printer connected but when it is removed and you use a different printer, especially from a different vendor, then these services can cause performance issues for the new printer.
    Okay, I'm heading home now but I will log in again after dinner to see how you're going...

  • POP LOV and Branching ( Partial page refresh)

    I have a POP LOV (Shows description and returns id). I want to change certain elements on the screen based on the user selection.
    It is not possible via POP LOV. I cannot use selection lov since the number of values returned is going to be very large.
    is it possible to achieve this functionality in any way using POP LOV ?
    Appreciate your help.
    Rgds

    Scott,
    Thanks for your input. I think I didn't frame my question correctly, sorry about that. I will describe further
    I want the page to refresh after a value is chosen using POP LOV. THis is required to hide/show certain elements on the screen and also to populate another Dependant LOV.
    For example, choosing country should populate dependant "city" or states lov. I have to achieve some functionality similar to this. I do not want to "Submit" the page, because I don't want to save anything at this point in time.
    So it would be partial page refresh (Similar to OA Framework) without submit.
    Rgds,
    Venkatesh
    Message was edited by:
    Venkatesh_pr

  • Partial Page Rendering with HTMLDB2.0. How can I do it?

    Hi,
    somebody told me, that PPR is implemented in HTMLDB 2.0. So not the whole page will be rerendered after a submit but a single region. I know this very helpful feature from the ADF-Java Server Faces. How can I do it with HTMLDB 2.0?
    Bye,
    Rumburak

    Hello,
    Take a look at this thread.
    Netflix: Nice UI ideas
    Also just so you know PPR Partial Page Refresh is an Oracle term you would probably have better luck looking for AJAX or XMLHTTP when looking in the forums
    Carl

  • Partial Page Rendering - newbie question

    I am a newbie to ADF and I am in the process of trying out the tutorial "Developing Ajax-Based User Interfaces with ADF Faces Rich Client Components" http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_56/jdtut_11r2_56.html
    I have a question regarding Step 4. I am not very sure where to post this question, if this is not the correct forum, pardon me.
    Under "Step 4: Implementing Partial Page Rendering" there is this following comment
    In order to have a refresh of the Product Details when you select another row in the Product table, we need to set the Partial Rendering behavior. To do so, perform the following steps:
    Similarly On Step 3, sub step 26 states "Finally, double-click on any of the rows in the product table. Notice that the Product Details pane does not reflect the change in the selected product. To implement this synchronization, we need to add partial page rendering functionality."
    Question: even before I tried any of the changes mentioned in step 4, I am finding that the product details pane does show information related to the product selected on the panel collection (in other words it is displaying the master detail information automatically). What am I missing here? As per the training document it is supposed to work only after implementing changes mentioned in step 4. Can one of you kindly point out if this is a mistake in documentation or if I have misunderstood the statement?
    Thanks
    A Sreedhar

    Frank,
    Thank you very much for the quick turnaround; I appreciate it.
    Yes, I am using what seems to be the latest version of JDev (11.1.2.3.0); and yes the ChangeEventPolicy for the iterator is set to "ppr". Thank you for pointing that out.
    Does that mean ppr is standard for most components (when I say components, I mean adf tables, button's etc), don't we need to add any special events to get that to work?
    I just wanted to see, what will it due if the ChangeEventPolicy for the iterator is set to "None"; made the change saved it, there were two iterators I changed the "ChangeEventPolicy" on both to none; saved it and ran the page. It worked same as before; I was expecting it will not load the corresponding data at the child level, but it did. can you kindly point out what is wrong.
    <executables>
    <variableIterator id="variables"/>
    <iterator Binds="root" RangeSize="25" DataControl="StoreProducts" id="StoreProductsIterator"
    ChangeEventPolicy="none"/>
    <accessorIterator MasterBinding="StoreProductsIterator" Binds="products" RangeSize="25" DataControl="StoreProducts"
    BeanClass="tutorial.model.Product" id="productsIterator" ChangeEventPolicy="none"/>
    </executables>
    Thanks
    Aravind S

  • ADF UIX Partial page rendering

    Hi
    I am facing a mysterious problem with partial page rendering in ADF UIX.
    My page contains a <header> H1 and inside this there are two headers(H2 and H3).
    The partial page rendering is in the header H2 and is working fine.
    When i remove the below header H3 the partial page rendering ceases to work and get stuck.
    Pasting the full code below. Please suggest.
    <?xml version="1.0" encoding="windows-1252"?>
    <!-- $Header: registration.uix 115.4.51.4 2009/12/14 13:10:05 kcthirum noship $ -->
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    xmlns:myTemplate="http://xmlns.oracle.com/xhub"
    xmlns:bc4j="http://xmlns.oracle.com/uix/bc4j"
    xmlns:data="http://xmlns.oracle.com/cabo/marlin" expressionLanguage="el">
    <!--This UIX page is used as a tutorial page for new developers, which is why it has a lot of comments-->
    <!--This section describes the ApplicationModule used by this page, and any View Objects that are used to display UI components or are used in any of the event handlers-->
    <bc4j:registryDef>
    <!-- XhubRegAM is the application module used by the entire Registration flow. defFullName is just the class. configName is the Configuration, which always has the pattern <AM name>Local -->
    <bc4j:rootAppModuleDef name="XhubRegAM"
    defFullName="oracle.apps.snw.tpadmin.server.XhubRegAM"
    configName="XhubRegAMLocal" releaseMode="stateful">
    <bc4j:viewObjectDef name="TpProfilesRegVO" rangeSize="1" autoCreate="false"/>
    <bc4j:viewObjectDef name="UsersRegVO" rangeSize="1" autoCreate="false"/>
    <!--IdentifierDomainsView drives the dropdown list of Identifier Types-->
    <bc4j:viewObjectDef name="IdentifierDomainsView" rangeSize="20"/>
    <!--XhubTerritoriesTlView drives the dropdown list of Countries-->
    <bc4j:viewObjectDef name="XhubTerritoriesTlView" rangeSize="300"/>
    </bc4j:rootAppModuleDef>
    </bc4j:registryDef>
    <!--We import the template file xhub.uit, which has code to display the tabs, subtabs, global buttons, etc., appropriately-->
    <templates xmlns="http://xmlns.oracle.com/uix/ui">
    <templateImport source="xhubtpadmin.uit"/>
    </templates>
    <content>
    <!--in this section we define all of the methods and ResourceBundle classes that we want to reference as data sources in our page-->
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:data="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!--We use the TextProvider class to display ANY text to the user. All text is controlled in the database and cached on the middle tier. This allows for translation and for customization of text-->
    <data name="textSource">
    <bundle class="oracle.apps.snw.uicommon.TextProvider"/>
    </data>
    <!--This method provides information about the hub-->
    <data name="adminInfo">
    <method class="oracle.apps.snw.tpadmin.webui.AdminInfo"
    method="getAdminInfo"/>
    </data>
    </provider>
    <contents>
    <document>
    <!--This section defines the html metadata, usually just the page title-->
    <metaContainer>
    <head title="${textSource.REGISTRATION}"/>
    </metaContainer>
    <contents>
    <body>
    <contents>
    <!--This next tag indicates that everything inside of it should be encapsulated in the "rootChild" node of the template page-->
    <myTemplate:xhubTpAdminPageLayout selectedTab="1">
    <contents>
    <!-- this will contain any validation errors after form submission -->
    <messageBox automatic="true"/>
    <!--The form tag is necessary for any kind of form handling. This particular form performs some javascript validation before submitting-->
    <form name="reg" method="POST">
    <contents>
    <!--The javascript that is executed on form submission-->
    <!-- we cannot implicitly determine that events will be triggered because submit buttons are outside the form scope, so add the placeholder explicitly -->
    <formParameter name="event"/>
    <!-- define the bc4j scope of all child elements-->
    <bc4j:rootAppModuleScope name="XhubRegAM">
    <contents>
    <!-- a top-level header -->
    <header text="${textSource.REGISTRATION}">
    <contents>
    <!-- always used OraInstructionText, not <tip>, for explanation messages-->
    <styledText styleClass="OraInstructionText"
    text="${textSource.REG_PAGE_EXPLAIN}"/>
    <!-- a second-level header -->
    <header text="${textSource.REG_COMPANY_INFO}">
    <contents>
    <stackLayout>
    <contents>
    <!-- the labeledFieldLayout is the correct layout for vertically-stacked labeled fields-->
    <labeledFieldLayout id="TpPartialDetails" width="80%"
    labelWidth="40%">
    <contents>
    <messageChoice name="OracleAppsCustFlag"
    prompt="Oracle Apps Customer"
    required="yes" statePreserved="true"
    selectedValue="${ui:defaulting(uix.pageProp.OracleAppsCustFlag, 'select')}">
    <primaryClientAction>
    <firePartialAction event="buyorsup"
    targets="TpPartialDetails"
    formSubmitted="true"
    unvalidated="true"/>
    </primaryClientAction>
    <contents>
    <option text="-select-" value=""/>
    <option text="${textSource.YES}" value="Y"/>
    <option text="${textSource.NO}" value="N"/>
    </contents>
    </messageChoice>
    <messageTextInput prompt="${textSource.ORACLE_CSI_Q}"
    name="OracleCsi"
    text="${uix.pageProp.OracleCsi}"
    rendered="${ui:defaulting(uix.pageProp.OracleCsiRender, 'false')}"/>
    <messageTextInput prompt="${textSource.YOUR_TP_NAME}"
    name="TpName"
    tip="${textSource.YOUR_TP_NAME_TIP}"
    required="no"
    text="${uix.pageProp.TpName}"
    rendered="${ui:defaulting(uix.pageProp.TradeswithTPRender, 'false')}"/>
    <messageTextInput prompt="${textSource.YOUR_TP_ALIAS}"
    name="TpAlias"
    tip="${textSource.YOUR_TP_ALIAS_TIP}"
    required="no"
    text="${uix.pageProp.TpAlias}"
    rendered="${ui:defaulting(uix.pageProp.TradeswithTPAliasRender, 'false')}"/>
    </contents>
    </labeledFieldLayout>
    </contents>
    </stackLayout>
    </contents>
    </header>
    <!--level-2 header-->
    <header text="${textSource.TP_DEFAULT_CONTACT_INFO}">
    <contents>
    <labeledFieldLayout width="80%" labelWidth="40%">
    <contents>
    <!--all of these fields default to the corresponding ctrl:page value if the user has entered a value. These values are set up in the register() handler-->
    <messageTextInput prompt="${textSource.PASSWORD_PROMPT}"
    name="Password" id="Password"
    required="yes" secret="true"
    maximumLength="32"
    text="${uix.pageProp.Password}"/>
    <messageTextInput prompt="${textSource.PASSWORD_CONFIRM_PROMPT}"
    name="PasswordConfirm"
    id="PasswordConfirm" required="yes"
    secret="true" maximumLength="32"
    text="${uix.pageProp.PasswordConfirm}"/>
    </contents>
    </labeledFieldLayout>
    </contents>
    </header>
    </contents>
    </header>
    </contents>
    </bc4j:rootAppModuleScope>
    <spacer height="10"/>
    <!--message indicating how we indicate required fields-->
    <inlineMessage required="yes"
    prompt="${textSource.REQUIRED_FIELD}"/>
    </contents>
    </form>
    </contents>
    <!--the contents of this tag will appear below the page-->
    </myTemplate:xhubTpAdminPageLayout>
    </contents>
    </body>
    </contents>
    </document>
    </contents>
    </dataScope>
    </content>
    <!--event handlers-->
    <handlers>
    <!--This event is called by pressing the submit button-->
    <event name="continue">
    <bc4j:findRootAppModule name="XhubRegAM">
    <method class="oracle.apps.snw.tpadmin.webui.RegistrationHandlers"
    method="register"/>
    </bc4j:findRootAppModule>
    </event>
    <!--This event is called by pressing the Cancel button-->
    <event name="cancel">
    <!-- finding the ApplicationModule causes it to be checked out from the ApplicationPool. It is released after rendering completes. -->
    <bc4j:findRootAppModule name="XhubRegAM">
    <!-- rollback the current transaction -->
    <bc4j:rollback/>
    <!-- forward to the summary page -->
    <go name="main"/>
    </bc4j:findRootAppModule>
    </event>
    <!--the * event is called whenever the page is accessed and no other event is called-->
    <event name="buyorsup">
    <bc4j:findRootAppModule name="XhubRegAM">
    <!--This method sets the context of the page, namely the scope of the country dropdown view object-->
    <method class="oracle.apps.snw.tpadmin.webui.RegistrationHandlers"
    method="isBuyerorSupplier"/>
    </bc4j:findRootAppModule>
    </event>
    <event name="*">
    <bc4j:findRootAppModule name="XhubRegAM">
    <!--This method sets the context of the page, namely the scope of the country dropdown view object-->
    <method class="oracle.apps.snw.tpadmin.webui.RegistrationHandlers"
    method="setContext"/>
    </bc4j:findRootAppModule>
    </event>
    </handlers>
    </page>
    Please suggest if you know of any documentation on ADF UIX partial page rendering.
    ADF UIX has very little documentation online and finding it hard to debug this issue.
    It ll be of great help.
    Thanks
    Kamal

    Hi Jason,
    As of EA9, all rendered components support a partialTriggers attribute. This attribute takes a list of master component IDs. If any of the master components are updated via a partial event, the dependent component will be rerendered in the partial update.
    If you are on an earlier release, you should upgrade.
    Thanks,
    Jeanne

  • OfficeJet 8500 Printer attached to Windows XP system via USB prints partial pages

    I have an OfficeJet 8500 printer stationed at the desk of one of my users and is attached to her Windows XP system with a USB cable.  The printer has started to print partial pages and will not complete a full page of text or images, color or black and white.
    I have attempted to reset the printer by removing power from the printer via the power cord, and holding # and 6 while turning the printer on (after reconnecting the power cord, of course).  The alignment process took place after this procedure, but it has not resolved the issue.
    I have not yet upgraded the firmware from what was installed at the factory.
    What might I do?  What am I missing?  Do I need to upgrade the installed driver on the system?  Is the printer able to be salvaged?  It doesn't appear to be hardware, as the portions which print are perfect; I just don't get the entire page.
    Thanks in advance,
    Rob

    The USB to parrallel cable will work just find if you don't mind plugging in the laptop to the printer when required. If you want to modify Win XP to be able to print to an AppleTalk printer follow the instructions below.
    "To install AppleTalk protocol to Windows XP
    Required files: (Get them from any system running Windows 2000 Professional or Server)
    netatlk.inf, sfmatalk.sys, sfmmon.dll, sfmatmsg.dll, sfmwshat.dll, sfmpsprt.dll
    If they can not be found you need to unhide hidden and system files.
    Copy the files to their respective places:
    C:WINDOWS(WINNT)\INF\netatlk.inf
    C:WINDOWS(WINNT)\SYSTEM32\DRIVERS\sfmatalk.sys
    C:WINDOWS(WINNT)\SYSTEM32\sfmatmsg.dll
    C:WINDOWS(WINNT)\SYSTEM32\sfmmon.dll
    C:WINDOWS(WINNT)\SYSTEM32\sfmwshat.dll
    C:WINDOWS(WINNT)\SYSTEM32\SPOOL\PRTPROCS\W32X86\sfmpsprt.dll
    AppleTalk Protocol should now be available under the list of Protocols you can add in Network Connections - Local Area Connections Properties
    This is only good using AppleTalk printers attached to the network. The AppleTalk printer will show up, if it's turned on, under Add Printer-Local printer attached to this computer - create a new port - AppleTalk Printing devices.
    For more info see: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/s agadd_appletalkport.mspx (you do not need to capture the port for the printer to work)
    If you can not get access to these files, make your email address visable in your user profile and I will send them to you."

  • Only printing partial pages

    I have the Photosmart c4795.  I installed it wirelessly and it would only print partial pages.  I contacted HP and followed the e-mail instructions to delete and reinstall the software.  It is still only printing partial pages.  Note that when I reinstalled it I did not install it wirelessly.

    I'm having the same problem happens nearly all the time.  I am using Picasa on a Macbook Pro and an HP C309A series printer.  I'm running Lion OS and the drivers are supposedly incorporated into the OS there are no more firmware updates.  We're all current - only started happening after I installed Lion.
    I'm NOT IMPRESSED and will look for a NON-HP solution if HP can't come up with a solution!

  • Subtab partial page rendering question

    Hi,
    I have a subtablayout bean with two adv table regions. The subtab links in the subtabbar bean are set to partial action. When I run the application for the first time, the subtab one is shown and clicking on the second tab, the VO tied to the second adv table is fired but I see only one row in it.
    When I click to go back to the first tab and then back to the second tab again I see all the records of second VO now.
    I change the action type from fire partial action to fire action for the second tab link. After this, I see all the records displayed the first time I navigate to second tab.
    What should I do to see all the records in the second tab the first time I navigate to it while keeping the partial page rendering mode.
    Thank you,
    Arun

    Thank you for your time Srinath.
    I used getCurrentRowIndex on the VO tied to the second tab and it returns -1 for the first time as well as subsequent navigations to the second tab.
    The table navigation shows "1-10 ..Next" (my setting is to show 10 records at a time in the advance table). It is not showing the 200-201 range.
    "getRowCount(..) would explicitly re-execute the query. This answers why you see the whole set of rows when you have this in the SOP. "
    I am not sure what you mean here..could you please explain. I understand 'getRowCount would re-execute the query' part. But the normal behavior for the advance table should have been to show the first 10 records since the VO has already been executed once.

Maybe you are looking for

  • How can i find SAP Gui logon pad version

    how can i find SAP Gui logon pad version ?

  • Backup to local ftp server

    I have recently bought an ASUS RT-N13U, which is a wireless router with an USB port to which I have attached an external hard disk. This is to be used to make files available to all computers on the network, but I would also like to use it for automa

  • Apply template to a page already created

    Is there a correct way to apply a template once a page has been created ? I have done it several time modifying the source of the page, but when it has binding that can lead to problems. What is your recommendation ?

  • How to reopen a case?? #0213681843

    how to reopen a closed case?? it's super hard to find what i can do or want to know within this adobe website or communities...

  • Text Variable error "No value could be determined for variable " Brain 632

    Hi, I want to display current fiscal period as description in the colomn of a query. Ex. If current fiscal period is 005.2009 in the colomn it should display 2009005 For that I have created a text variable.(Is it correct to create a text variable for