Losing Data Bindings in Popups

Hello,
I recently upgraded from JDeveloper 11.1.1.2.0 to 11.1.1.3.0. The application I'm working on allows for the creation and editing of various entities (students, applications, etc..) which is primarily accomplished via pop-ups. I had noticed this issue once or twice pre-upgrade, but now it seems much more widespread: when editing an entry, the data is pulled from bindings, but sometimes it seems those bindings are lost (or the values are null). Like, a check box in the pop-up will display "yes/true" but still be unchecked... or a select-one drop-down menu will be empty, even if a summary table (located on the main page, not the pop-up) is displaying the correct data for that attribute.
This happens primarily with selectOneChoice and selectBooleanCheckbox components. The loss of binding occurs most frequently when editing the entry to bring up the pop-up, and canceling out of the pop-up... then if the edit pop-up is opened again again, the data's gone. But, sometimes it's missing on the first edit (and in some cases just selecting a different row in the table displaying these objects will be enough to lose a binding!).
The editable objects are always displayed in a table in a main page, with an independent navigation page framing the data page. Whenever this loss of binding occurs, the ability to navigate via the frame is lost... until an object is edited and saved properly.
Has anyone seen any behavior like this before, losing bindings in pop-up checkboxes and selectOnes? If anyone has an idea what could be causing it, I'd appreciate it!
Thanks

This is a JDeveloper 11.1.1.3 release bug :_|
Check for a workaround here: http://adfbugs.blogspot.com/2010/05/choise-list-in-popup-turn-to-null-after.html. Basically you need to add partialSubmit=true to your close button and close the popup programmatically in an actionListener.

Similar Messages

  • How to reset without losing data?

    LS,
    Is there a way to reset my iPhone (through itunes or other) that will prevent me from losing data? 
    Situation:
    I have an iPhone 3G with ios4. Saturday night my phone acted weird, it would lock the screen every few seconds without me promting it (automatic screen lock is off).
    To reset the phone I pressed the home button and the on/off button simultamiously. Instead of simply resetting it stuck on the Aplle logo.
    Trying to get it going again, it went out.
    Since than whenever I try to switch the phone on, it asks for a reset through iTunes (picture of usb + itunes in screen).
    Since I have not been able to synchronise the phone for a few weeks, I was wondering if there is a workaround to prevend loss of data (for instance the recent photo's).
    I sincerely hope there is a workaround.
    Cheers

    Well, if you have a backup, that will save your text messages, settings, camera roll etc.
    Not the music, photos, videos, contact etc.
    So there is a way to restore without losing most of the important information. Since the music, videos and others are theoetically on your Mac/PC.

  • HT204053 I have one icloud id on my mac and want to share with an ipad with a different icloud id.  if I create a new id for both of us will this work?  My concern is losing data on either device.

    I have one icloud id on my mac and want to share photos, calendars, etc with an ipad with a different icloud id.  if I create a new id for both of us will this work?  My concern is losing data on either device. (the mac book pro is new, but has all of the retrieved data from my previous mac book pro)

    You will lose data from whichever was the 2nd to last to sync .
    Don't do it.

  • Is it possible to resize the partitions without losing data?

    I have following issue:
    I have dual-boot Arch with Windows XP. I created 4 partitions: 40GB XP's system disk (ntfs), 80GB ntfs data disk, 1GB swap and 25GB Linux partition.
    But I am running XP so rarely, that it is frustrating, that I have most of my data on ntfs partition... I'd like to wipe out that 80GB ntfs, resize the system ntfs partition up to for example 60GB, and add the remaining 60GB to my linux ext3 partition (because I'm running out of free space recently...).
    Has anyone done something like this, and how safe it is (if possible at all)
    Yes, I have read this: http://wiki.archlinux.org/index.php/Res … _partition, and a few more.
    I just don't have time to reinstall both systems (especially I would not like to install Windows, because I'd rather install Vista from my recovery disk, than hack the XP to work again...), and if some issues are likely to appear, then I'll give it up for now .

    It's trivial using gparted, but as with any similar operation, you run the risk of losing data - so you'd better backup.

  • Bought a new macbook air because my old computer is formatted. I want to sync my iphone to my new mac, so I can save the data on my iphone without losing data. how can I do?

    bought a new macbook air because my old computer is formatted. I want to sync my iphone to my new mac, so I can save the data on my iphone without losing data. how can I do?

    You need to copy everything form your old computer, or your backup copy of your old computer to your new one.
    The iphone is not a storage/backup device.  it simply mirrors the selected content of the computer to which it is synced.

  • Big bug in NW-PI-731, JDBC-adapter losing data

    Hi,
    we recognized a big bug in NW-PI-731 SPS07, processing data with JDBC_xxxx_SENDER, sometimes it occurs, that for example, from 13974 documents should be processed, but only a part of 13137 documents are processed successfully, but 837 documents are missing in the target system,
    In message-monitoring, PI displays all documents as processed successfully, but that is obviously wrong,
    so PI is sometimes losing data - this behaviour we did not have had in NW-PI-700-SPS18
    after upgrading to PI-731, we have big trouble with data processing.
    did other SAP-customers noticed the same behaviour?

    Hi
    You can count the total number message processed in PI from message monitoring in RWB.
    If you see that the number is 13137, then there is a problem while reading the data from database
    using JDBC sender adapter.
    Since the number of records are high, you can try to restrict the number of records using rownum in
    database select query.
    Check this
    PI 7.1 JDBC sender adapter huge load from DB se... | SCN
    PI JDBC Sender adapter - Some Learnings

  • Popup reuse and instantiate data within the popup

    Hi,
    I'm trying to implement a popup I can use to edit values via a form. I only pass an ID to the popup. The popup will contact a datasource to load the data from a database, based on the ID, and pre-fill the form. If no ID is passed (or empty), the popup displays an empty form which can be used to add the record to the database.
    Based on the samples I found this was quite easy to implement... However, I'm facing a problem in instantiating values, when the popup gets called the first or the second time.
    I first added the initialisation code (clearing fields and getting new data from database) in the creationComplete of the popup; but the event does not get fired anymore when opening the popup the second time (popup gets called by PopupManager.addPopup).
    I tried triggering the init on the event 'added' or 'addedToStage' as well, but then some of the components in the popup are not yet created the first time I open the popup, giving an exception thrown...
    What's the best approach or event to trigger on, to instantiate my data when the popup displays?
    Tnx
    Stefan

    Thanks, I found where I went wrong... the removePopUp was porperly called from my code; I tried a createPopUp, but stored it in a local value, and reused it... Now I realy use a new instance and it works on the creationComplete...
    However, if I would like to use the same instance, and add it with 'addPopUp', should I still remove it?, and on which event I can best trigger the instantiation : I would like to instantiate the values when the popup is displayed, I don't want to add a button 'update the data'...?

  • How to view windows Xp formatted hard drive with Macbook pro without losing data

    How to view Windows Xp programed Hard drive with Macbook pro with out losing data on hardrive

    Go to the First Aid tab in Disk Utility, select the external drive partition and read the format from the lower left, at the bottom.

  • PLEASE READ REGARDING iPod losing data

    I have bought my 5th generation iPod and have not done anything to it that will cause to malfunction in anyway. But im getting annoyed that a lot of times i connect by black video iPod into my Windows Xp computer. Then iTunes pops out. I click on the iPod on the left and its WHITE!? Then i check how much space its used and it says 1.5 g data used? I normally have around 6.3 g.
    I just lost all my videos and photos but i still have the songs for some reason. Then i always have to keep updating it cause everytime i connect i keep losing data.
    Basically, when i connect my iPod a lot of stuff gets erased and i have to keep updating it.

    well umm of course it appears WHITE because it cant detect that your ipod is black and it sounds like you reset it or deleted your videos on your computer and lost them in the ipod last time you connected
    dell   Windows XP  

  • SRDemo in tomcat 5.5.x got ERROR after added data bindings

    hi all,
    it is success to deploy the project into tomcat 5.5.x, and it works fine when no data bindings added into jspx.
    after i added a data bindings,
    it works find at embed OC4J, but not in tomcat 5.5.x
    and tomcat comes this error:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: javax.naming.NameNotFoundException, msg=Name SRPublicFacade is not bound in this Context
    how can i bound the SRPublicFacade into tomcat5.5.x ?
    Many Thanks!
    Best Regards,
    S. H. Wong
    Edited by: user9218028 on Apr 13, 2012 10:04 PM
    Edited by: user9218028 on Apr 13, 2012 10:09 PM
    Edited by: user9218028 on Apr 13, 2012 10:13 PM
    Edited by: user9218028 on Apr 13, 2012 10:14 PM

    Please help,
    Many Thanks.
    Best Regards
    Wong Sai Ho

  • What is the proper way to convert a VHD from dynamic to basic without losing data?

    Hi,
    What is the proper way to convert a VHD from dynamic to basic without losing data?
    Our VM is running Windows Server 2008 R2 SP1
    Thanks in advanced

    Hi efebo,
    "After you convert a basic disk to a dynamic disk, you cannot change the dynamic volumes back to partitions. Instead, you must delete all dynamic volumes on the disk and then use the
    Convert To Basic Disk command. If you want to keep your data, you must first back it up or move it to another volume. "
    Please refer to following link:
    http://technet.microsoft.com/en-us/library/cc731274.aspx
    You can try to backup the dynamic volume via Windows Server Backup then restore it to a new basic VHD file ( the space is recommended to be   larger than or equal to the old one ) .
    Hope it helps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Downloaded songs losing data..

    I have numerous previously downloaded songs that appear to be, losing data.   I'm listening to incomplete songs and it's driving me nuts...

    Yes, they were checked and selected to sync.. all purchased with the same appleid and I never received any error messages.. funny as it is though, after rwading some threads I saw one person mention that they played a few seconds of each song then synced again and it worked.. so I tried it and now all my purchases show up in my playlist on the iphone itself. Weird... but hey whatever works. Thanks SO much for responding though, I was definitely more than a little upset lol

  • Transfering data between cascading popups

    Hi,
    Is it possible to pass data between multiple cascading popups ? I know how to pass back to the parentApplication but not the parentPopUp so-to-speak.
    The setup I have is that my parent application tiggers a popup (say PopUp A) and that in turn triggers another popup (PopUp B). I want to pass the results of the calculations done in popup B back to popup A. (The popups are all in separate .mxml files).
    Can this be done easily ?
    Thanks,
    Alex

    Best solution for your difficulty from the root - would be  to store all calculation results, all data model in one spot/place say using some
    singleton class, which you could access then from anywhere in the code.
         public class CentralModelLocator {
              private static var instance : CentralModelLocator;
              public var anyData:*;
              function CentralModelLocator() {
                   if (instance) {
                        throw new Error(
                             'Singleton already created',
                             getQualifiedClassName(this));
                   instance = this;
              public static function getInstance():CentralModelLocator {
                   if (!instance)
                        instance = new CentralModelLocator();
                   return instance;
    Then you could access your data from any popup of any depth, just use this code:
    Inside PopupA code write to this var CentralModelLocator.getInstance().anyData = 'Some calculation result';
    Inside PopupB use this one code to get the result:
    CentralModelLocator.getInstance().anyData

  • Can different data bindings be made to different instances of a fragment?

    Hello all,
    Within the form I am developing I am re-using the same fragment several times.  I would like make different data bindings to the fields within the separate instances of the fragment.  Naturally, when I make data bindings to the fields within the fragment file the same bindings are present to each instance of the fragment.  Is there any way I can use the same fragment but have different data bindings within each instance of the fragment?
    Best wishes,
    Kieran

    Unfortunately bindings cannot be dynamic so they cannot be changed on the fly. What yo can do however is use a relative reference for your binding in the fragment then when you import the fragment in your main form you can point the parent subform of the fragment to the right parent node in the schema. This woudl allow you to reuse the binding of the fragment in different areas of the schema as long as the structure was similar in
    those sections of the schema.
    Make sense?
    Paul

  • Can I change partition size of external HD without losing Data

    I have an external HD that I use one partition for backup and use another partition for Time Machine. I need to change the sizes, need more on my backup. Can I change partition size of external HD without losing Data? I just changed from a Powermac G4 using Leopard to a Macbook Pro with Lion, so I am also thinkin in getting everything set up, format the Time Machine with the old stuff and make a new Time Machine.

    The Disk Utility can't change the starting point of a partition without erasing it and the data on it.
    (72024)

Maybe you are looking for

  • Excise Tx.type CEIV - G/L Account determination

    Dear all, I am cancelling an Excise invoice through TX.code J1IH.  At the time of cancellation, G/L Account are determined.  However the GL Code related to PLA are picked, actually it should pick GL code of RG23A.  Also note, while I create an excise

  • Connecting to wifi on ios5

    I have downloaded the new ios5 on my 3gs and it cant seem to connect on to my wifi? Could anyone help with this??

  • CCM for SRM

    Hi ; I wanted to know how i can look for CCM (Catalog content mgmt ) specific stuff on Xi content for SRM .I have downloaded XI content for SRM on Xi server from Service marketplace. Thanks

  • Product Not Working

    The Photoshop Elements and Premiere Elements (Serial numbers - [removed]) have been registered with you.  The products will not let me edit photos.  The system asks me to accept a trial subscription.  I have just purchased this product and don't need

  • Recommended Word Settings

    Hi All, I am searching for a document or documents that provide recommended MS Word settings in the options of MS Word.  I have a user that can view a WWI report from template once and then any subsequent reports just hang and never open.  This probl