Cant delete all from a bound text area--why??

Hi All,
Here's my problem. I'm using jdev10.1.2, jsp's and adf bc's.
i have several text areas on my jsp that correspond to clob attributes on a VO. If the user edits this page by removing the entire contents of one of these text areas and submits the form, when the browse page is reloaded (which is a copy of this page except it has the commit button on it and its not editable), the text that was just removed is defaulted back in. i have noticed that if i leave a space when i remove the contents, it works perfectly fine.
i have tried defaulting spaces in on the entity and this does not work. Any ideas would be most welcome.
Thanks in advance,
Newbe

Hi,
hard to tell from what you describe. This could be a bug or an implementation error. I suggest to file a service request with support
Frank

Similar Messages

  • I just downloaded the latest version of firefox (5.0). Can I delete all the older versions that are still on my drive? 2) When I call up some web sites sometimes the web site comes up 3 or 4 times...how do I stop this from happening?

    I just downloaded the latest version of firefox (5.0). Can I delete all the older versions that are still on my drive?
    When I call up some web sites sometimes the web site comes up 3 or 4 times...how do I stop this from happening? For example if I click on a link the exact same link comes up 3 or 4 times and I have to manually delete all of them but one.

    Do you organise your email into separate folders, or do you just let it accumulate in the Inbox?
    I would strongly advise you not to let it sit in the Inbox.
    When you see this happening, try right-click on the affected folder, select '''Properties''' then '''Repair Folder'''.
    Large folders (actually, a folder in Thunderbird is stored as a file, so it is sensitive to file size limits set by the underlying file system) can be problematic. This is one reason not to let messages collect in one folder. I use Thunderbird's Archive folders so that accumulated mails over several years can happily coexist because they are effectively stored in many small folders. No single mail store folder then exceeds the 2GB or 4GB sizes that have been known to stress the OS. I appreciate that current builds of Thunderbird and a modern 64-bit OS should be able to cope, but practically I find it slows down when given huge files, so I err towards a pragmatic solution; a large number of not very big files.
    Archives are searchable, and a Saved Search folder can give you a virtual composite folder allowing access to the entire Archive.

  • All my contact are being copied to my friend's iphone and i also am getting his contacts on my phone,when i delete a contact it also deletes it from his phone,we are sharing the same apple ID. How can i stop our contacts from being shared between us

    All my contact are being copied to my friend's iphone and i also am getting his contacts on my phone,when i delete a contact it also deletes it from his phone,we are sharing the same apple ID. How can i stop our contacts from being shared between us

    Everything that you have checked in your icloud settings will be shared between devices using the same Apple ID.  If you don't want icloud to share that information, then simply turn off that process under settings > icloud

  • How can I empty my trash email. There is no delete or delete all option after the emails are highlighted from the edit option. This is on an i phone 4 running on ios 7.1.2

    How can I empty my trash email. There is no delete or delete all option after the emails are highlighted from the edit option. This is on an i phone 4 running on ios 7.1.2

    I have 7 email accounts on my phone. If I tap EDIT while viewing the Trash folder in any of them I see "Mark All" on the left and "Delete All" on the right. If you tap any message, however, the legends go away.

  • How can i stop icloud from downloading all my photos onto my iphone 4s each time I sync. Then, how do I delete them from my phone, there are no delete options. I'm slowly going crazy.

    How can i stop icloud from downloading all my photos onto my iphone 4s each time I sync. Then, how do I delete them from my phone, there are no delete options. I'm slowly going crazy.

    Hi iprover,
      Let me first say that I am NO EXPERT with anything Apple and really have only started looking into this iCloud stuff a few hours ago because I'm trying to help my mom free up some space on her iCloud. But anyway, here's what I'm learning and what I THINK might be happening to you.
    Also, if any Apple support people (do they browse the forums to dish out helpful hints?) or people who probably know infinitely more than me about this stuff, please do chime in and confirm / correct my statements!
    This is what I gather.
    iCloud for Windows is set up with a local folder (let's call it "C:\Users\Administrator\Pictures\iCloud Photos\My Photo Stream") where iCloud will store photos uploaded to the Photo Stream. This will allow you to view your Photo Stream photos on your PC.
    This does not mean that this is a PC backup of your Photo Stream photos, but just a way to view your Photo Stream from your PC. That being said, the general Photo Stream rules apply: 1. No videos are on the photo-stream, and 2. Photos on the Photo Stream will be removed after ~30 days and/or after hitting the Photo Stream limit of 1000 photos.
    My guess is that the iCloud Windows App will delete photos from the local folder that are older than ~30 days and/or delete all but the most recent 1000 items if the 1000-item limit is reached.
    That is a scary thought! I really hope you did not lose all your pictures, but my guess is that the iCloud local folder is NOT meant for backup but instead is the iCloud Windows App's sandbox for updating and managing Photo Stream photos.
    All that being said, I'd say it's important to back up your photos in a separate folder not related to the iCloud local folder.

  • Can a script manually insert a delete (or backspace) into a text area?

    I'm new to action script, so this may have a simple answer, sorry if that's the case.
    I have a little movie created with a simple purpose of trying to mimic a system like cell phones have for character input.
    There are two text areas, one hidden off the screen that accepts the input from the user; a second text area in on screen and displays what the user had entered after some basic processing on the input.
    The hidden text area is pretty basic with listener that is responsible for grabbing the input keys and then mangling them to be inserted into the displayed text area based on the cell phone text entry multi-tap rules. Example user press 2-2-2  and the hidden input accepts 222 and then appends 'C' to the display text area. That's working great, but I have a problem if the user wants to delete from the display text area. I can't find a way to insert a delete or backspace key into the display text area. I've tried using StringFromCharCode (8) // Key.BACKSPACE, but that doesn't work. That just displays one of those undefined glyphs. I figure that things like clear, and delete are handled somewhere higher in the input chain and that's where I'm having a problem.
    I've looked, but I can't find a way to delete a single character from the text area. I was thinking if I could find the cursor location that I could just use some delete character method to get the job done, but I couldn't find how to do that.
    Any ideas on how to pull off manual delete function in a text area?

    Ned, I do really want to manually (by method of code) trigger a delete in a text area. The delete (or backspace) that I want added to the text area isn't directly entered by the user, it's the result of several key presses by the user. That's why I called it "manual" because it's done by the code, not by the user's direct input.
    Think about how text entry works on most phones... if you want to enter a letter you have to cycle through all the letters on a single key until you get to the character desired. As I stated before, if you want a 'c' you need to press 2 button 3 times. This is basically what I'm trying to do, but I want to add the ability to delete a character too if the correct sequence in entered, for example a sequence of ### would equal a backspace.
    Rothrock, I think you were thinking the same thing that a single key is used to do a backspace.
    I was thinking that I could possibly insert key event into the event queue for the text area to process, but I wasn't sure about that.
    Sorry, if this is confusing, I know it's not a straight forward design. I need onscreen and offscreen text areas with the onscreen one acting as a slave of the offscreen one.
    The way the code currently works is hidden text area had a listner that responds to changes, and that handler processes the key entered and deletes that character from the hidden text area. After the full sequence of characters (say 2 button has been pressed 3 times) the handler then sends the resulting character into the display text area. This part of the code works great. I can add any character including some specials like tab and newline. However if I want the text area to delete a character I don't have a way to do that. That's why I tried to insert the backspace key (0x08 or ^H, for other oldschoolers), but using that as a char code or string from char code doesn't work.
    I had also tried to create to set the focus to the display text area then create and dispatch a backspace keydown and keyup events to the visible text area and then return the focus back to the hidden textarea, but... no luck.

  • I cant delet all the itunes files o my cp to download the

    I cant delet all the bonjur files to download the new. Itunes what do i do

    Sync is only oneway, from PC to your device.  Unless you have the music on your PC, iTunes is going to wipe out what you have on your device if you are syncing to a new library.
    You can only transfer Purchased music over to Itunes on your PC.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    As for you own music, you may have to use a third party software.  A good Free one is called Sharepod which you can download from Download.com here:
    http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2

  • I've deleted all my emails and texts to make room for the 7.1 upgrade but my usage still says I'm using 641MB for mail and 364 MB for messages. Anyone know how to free up this memory? Thank you.

    I've deleted all my emails and texts to make room for the 7.1 upgrade but my usage still says I'm using 641MB for mail and 364 MB for messages. Anyone know how to free up this memory? I have a 16 GB model. Thank you.

    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    How to Remove “Other” Data from iPhone, iPad and iPod Touch
    http://www.igeeksblog.com/how-to-remove-other-data-from-iphone/
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6/7, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
    What is “Other” and What Can I Do About It?
    https://discussions.apple.com/docs/DOC-5142
    iPhone or iPad Ran Out of Storage Space? Here’s How to Make Space Available Quickly
    http://osxdaily.com/2012/06/02/iphone-ipad-ran-out-of-available-storage-space-ho w-to-fix-quick/
    6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch
    http://osxdaily.com/2012/04/24/6-tips-free-up-storage-space-ipad-iphone-ipod-tou ch/
    Also,
    How to Clear Message/iMessage Cache on iPhone & iPad And Reclaim Lots of Free Space
    http://www.igeeksblog.com/how-to-clear-message-imessage-cache-on-iphone-ipad/
     Cheers, Tom

  • I cant delete music from my iphone since downloading iOS 7 i have tried synching it and making sure that i only download checked songs bt still wont get rid of them..can anyone help?

    After downloading ios7 i cant delete msuic from my iphone can anyone help?

    Hello Amanda,
    I wonder if you are seeing your iTunes in the Cloud purchases.  The items you see with the iCloud icon next to them are purchased songs that you can stream from iTunes in the Cloud.  You can hide these songs in Settings on the iPhone:
    Just show music that’s been downloaded from iCloud: Go to Settings > Music, then turn off Show All Music.
    These steps are from the iPhone User Guide:
    iPhone User Guide
    http://help.apple.com/iphone/7/#/iph6e2dfb83
    If there are just specific songs you would like to hide, you can hide them using the iTunes Store on your computer:
    To hide your purchases
    Open iTunes on your Mac or PC.
    From the Store menu, choose Store > Sign In, and then enter your Apple ID and password.
    Go to the iTunes Store.
    Click Purchased from the Quick Links section on the right side of the iTunes Store.
    Choose a content type by clicking on Music, TV Shows, Apps, or Books from top.
    Hover your cursor over the item you want to hide.
    You will see an "X" either to the right or left top corner of the item.               
    Click the "X" to hide that item. A confirmation dialog will appear once you click the "X."
    Once you hide the songs on your computer, I recommend quitting and relaunching the Music app on your iPhone.  You can find more information about hiding purchases here:
    iTunes Store: Hiding and unhiding purchases
    http://support.apple.com/kb/ht4919
    If the songs do not display a cloud icon next to them, try deleting them directly from the iPhone using these steps:
    Tap the Music app.
    Tap the Songs category.
    Swipe left to right over the song you want to delete.
    Tap Delete.
    How to delete content you've downloaded from the iTunes Store, App Store, iBookstore, or Mac App Store
    http://support.apple.com/kb/HT5772
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Is there a way to add/delete words from the predictive text ?

    Is there a way to add/delete words from the predictive text options that my iPhone is giving me? I'm using an iPhone 6 Plus with iOS 8.
    There are specific words that are popping up in the area right above the keyboard where it displays 3 word suggestions to choose from. This area seems to suggest words that I have typed before, I'd like to remove these words. Default seems to select the word in the center and when I'm typing fast on occasion it will recommend and select words that I don't need to use.
    Any help would be appreciated.

    999753 wrote:
    I know in 10g delete is added but in 9i i can only work with UPSERT( update, insert)
    is there a way to add delete into 9i MERGE? or somehow encapsulate it?
    Thank youI would suggest upgrading to a supported version of the database. 9i has been unsupported for many many years now.
    And to answer your question... to the best of my knowledge, there is no workaround. It works as it works.

  • No matter what I do I cant delete itunes from my computer so I can install newest software.

    no matter what I do I cant delete itunes from my computer so I can install the newest software?

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then seeRecover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • Crashed ...I tried start it like is but non start, is it deleted all from it

    my ipad crashed, (email chrashed actually), In my try to recover it i try shut down after press the power button 5-8 sec and for about 7-12 hours showned a circle trying to shut down. After battery run out shutted down, i try to charge it but during, shows a usb cable with itunes logo and an arrow to get connected, after 8hours charge, when connect to itunes says for :
    iPad Recovery Mode
    Your ipad software is up to date. iTunes will automatically check for an update again on 11/03/2013. (in a week)
    I tried start it like is but non start, is it deleted all from it....?
    Ipad 1
    3.2 updated to 4.3.3
    what can recover if deleted all?
    pdfs eBooks are recoverable?

    The first step of syncing with iTunes is iTunes making a backup. Restore from that backup using the instructions in this article. Your iPad will be like it was when the backup was made.
    iTunes: Restoring iOS software
    The backup does not included synced media like apps. music and synced photos.
    If necessary you can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Do that before restoring from backup

  • A lot of my pictures are in I Photo and also in Finder.  Can I delete them from finder?  They are taking up a lot of room.

    A lot of my pictures are in I Photo and also in Finder.  Can I delete them from finder?  They are taking up a lot of room.

    Just make certain that the "Originals" or "Masters" are in your iPhoto Library before you trash the images.
    You can find out by selecting the iPhoto Library file with the control key held down, then open the Library (which is, actually, a folder). You'll see a folder named "Originals" or "Masters" and you can check there to make certain that you have all of the high-res images in your iPhoto Library. If you do, you can safely trash the original files, although I would, if it were me, make an archive of the images before trashing (either on an external HD or on archival DVDs).
    Make sense?
    Clinton

  • I see how to delete songs from iPad, but there are some that won't give me the option to delete when I swipe it. Why won't it let me?

    I see how to delete songs from iPad, but there are some songs that don't give me the option to delete when I swipe them. Why can't I get rid of these songs?

    Do they have a cloud icon next to them? If they do, they aren't on the iPad so you can't delete them. They are in iCloud ready for you to download them if you want to and they are visible in the music app for this purpose.
    If you don't want to see these songs that are in iCloud, go to Settings> iTunes & App Store>Show all>Music>Off.

  • How can i delete songs from iPhone when they are grayed out

    how can i delete songs from iPhone when they are grayed out. It doesnt let me delete from itunes either and its just taking up space on my iphone and i cant even listen to the song that are grayed out

    I did this with about 100 songs, and the problem is everytime I connect my iphone with itunes, It will automatically sync back every single song I did delete on the phone by swiping.
    I did search on google and found out that serveral people has this problem. The songs wont delete from itunes library.
    So why do they even make this function if it only deletes the songs for a short time?
    Best regards PelleRPG.

Maybe you are looking for

  • Shake and Dual monitor

    Hi, I'm new to Shake, and learning tutorial at this moment. I have dual 23" HD cinema monitor from apple, and I have been using Shake just one side of the monitor and the other side for emails and other stuff.. This morning, I thought... I want to us

  • Crs will not start on 10.2.0.3

    Hi All ! RHEL 4 AS U2, 2.6.9-42.0.3.EL After installation of a patch 10.2.0.3 it has ceased to be started crs. [root@racnode1 init.d] ./init.crs start Startup will be queued to init within 30 seconds Thus crs will not start cd /u01/app/oracle/product

  • Re : teardrop vulnerability in Solaris 8 SPARC

    CONFIG : NETRA X1 SOLARIS 8 Currently we are stress testing a firewall and DMZ config using Nessus. Nessus crashed my web server ( config above ) and reported that the cause was a vulnerablilty to the teardrop ip-frag DoS attack. Isn't this an old at

  • Thai Font on web after genereate by report builder is "????" (Can not read)

    Hi Guru... I'm use report builder 10 g for build report After i'm generate report by Run paper Layout ... Thai font is ok but if i'm generate report by Run web layout .. Thai font is ????? NLS_LANS = THAI_THAILAND.TH8TISASCII Please help me for confi

  • Lithtroom 5.X exit problem

    After some random time, I can't exit Lr trough File Menu/Exit, or even if I use shortcut Ctrl Q. Instead of that, LR applies preset. I have same problems with W7, W8, Lr4, Lr5. Maybe the bigger amount of my presets crashes a part of Lr. Other functio