Customize default Delete dialog

Hi
My enviroment is:
Application Express 4.2.0.00.27
EPG
Oracle xe 11g R2
Windows 7 32 bit
I want to customize delete dialog, more precise I want to change labels OK/Cancel on Confirmation dialog.
probably should rewrite apex.confirm code or delegate to other function
button class="uButton " onclick="apex.confirm(htmldb_delete_message,'DELETE');"
I found articles JQuery UI modal delete confirmation and [http://dbswh.dyndns.info/dbswh/f?p=BLOG:READ:0::::ARTICLE:11400346855113]
but they are obsolete and no applicable to apex 4.2.
Maybe should apply something like [http://stackoverflow.com/questions/4421072/jquery-ui-dialog-instead-of-alert-for-rails-3-data-confirm-attribute]
My knowlege of jquery is poor , so I can't implement this.
It will be nice to see in future relases, possibility to customize default application dialogs with application property delete dialog html code snippet
IE ( DIV { jQuery UI dialog ....}
In this case you can contribute better visual part of application , adding custom images, css ...
as well better globalization support, since javascript alert button labes are not covered in proces of translations.
Regards
Edited by: Baki Sine on Nov 29, 2012 6:08 AM
Edited by: Baki Sine on Nov 29, 2012 6:09 AM
Edited by: Baki Sine on Nov 29, 2012 6:10 AM

Not that I know of. Typically if you need customized dialog boxes you can build your own and handle the values as needed to follow CR parameter types.
Thank you
Don

Similar Messages

  • Default Delete Job on AE ?

    Hi,
    On RWB -> Component Monitoring ->Adapter Engine -> "Status" Tab -> Background Process:
    There are three background jobs on Adapter Engine:
    Default Delete Job
    Default Recover Job
    Default Version Archive Job
    We have first two jobs active.
    Since we have scheduled archive and delete in ABAP stack, and to my knowledge, the message persisted in Adapter Engine will goes to different database table from ABAP stack.
    I would like to know how the Default Delete Job running, can it be customizable ?
    Thanks in advance.
    Liang

    Anyone has idea about the delete job ?
    My investigation showed that persisted message goes to following tables
    For Integration Server: SXMSPMAST, SMXSCLUR, SXMSCLUP etc.
    For Adapter Engine: XI_AF_MSG
    For BPM:  SWWWIHEAD, SWFRXI*
    For Integration Engine, we can define retention period for message archiving and deleting.
    For Adapter Engine, there is default archive and delete job I mentioned in above message.
    Just do not know how to customize those jobs.
    Thanks
    Liang

  • Suppress default editor dialog box

    Is there any way to suppress default editor dialog box that comes at 1st launch of Dreamweaver CS5. I need to automate some stuff and cant figure out how to handle it.
    I cannot attach screenshot of this dialog box here, but it says that "Dreamweaver CS5 will set itself as Default editor for the following file types:" and gives option as jsp, asp, css etc.
    Any help would be appreciated.

    wsalopek wrote:
    Suffice it to say for the purpose of this thread that when I did the ICS "upgrade" to my Droid 4, nothing but trouble followed until I did a hard reset and had to reinstall/customize everything...lots and lots of frustration and lost time, including a whole day when my phone was not usable at all (slow/rebooting on it's own/battery running hot/high cpu usage/battery dying in 90 minutes)...and I an NOT the only one.
    Anyway, my wife has a Droid 4 as well, and she is being pestered by the dialog box that keeps asking her if she wants to do the upgrade. We do NOT want that "upgrade" installed on my wife's phone, but dealing with that dialog box is getting very tiresome.
    Anyone know how to suppress that dialog box so it stops popping up?
    Thanks...
    There is no way to do this that meets the ToS on this board (as Verizon wants everyone to be at the same software level for a particular phone model).  Search forums other than this one and the Motorola one for the information you need.

  • Project deleted in iPhoto 11 ver. 9.1.1 After spending three months building a twenty six page Book Project in iPhoto i added a page and later decided to delete the page. I selected the page, pressed the delete key and confirmed the delete dialog box ( i

    Project deleted in iPhoto 11 ver. 9.1.1
    After spending three months building a twenty six page Book Project in iPhoto i added a page and later decided to delete the page. I selected the page, pressed the delete key and confirmed the delete dialog box ( i didn't read, dummy) by pressing the delete button. The whole project was gone, the undo menu was grayed out and there was nothing in the iPhoto trash about my Book.
    Surly I can find this if I knew the path to find the project in a library on a back column I have of my hard drive.. Could anyone help me?

    Sorry I'm having a hard time getting this.
    If I go to my hard drive BIGMAC>Library>Application Support>iPhoto>the only thing in this folder is Themes.
    However, when I "Get Info" it's 580MB for 24,421 items. iPhoto says I have 35,977 photos. I would think the database would be into the GB for this many photos.
    If I go to BIGMAC>system>Library>I find nothing about iPhoto
    Is the iPhoto file in the Application Support the one I need to replace with my backup?
    Thanks so much for your help.
    Jack

  • Using 'defaults delete' command with com.apple.dock

    I have been using the "defaults" command in my scripts to add an icon to a user's dock after a new application has been installed. But now, I'm having trouble trying to figure out how to remove an icon from the dock using the command line. For adding an icon, I use:
    defaults write com.apple.dock persistent-apps -array-add '<dict><key>tile-data</key><dict><key>file-data</key><dict>
    <key>_CFURLString</key><string>/Applications/NewApp/Program.app
    </string><key>_CFURLStringType</key><integer>0</integer>
    </dict></dict></dict>'
    (take out all the carriage returns and spaces. I had to put them in here for the line to show properly on the post)
    This works great for adding an icon. But, I cannot seem to write something similar using "defaults delete"
    Any help is appreciated.
    Thanks,
    -Steve
    PowerMac G5   Mac OS X (10.4.7)  

    Hi Steve,
       If it froze then the code isn't robust against problems. In this case the problem is the web. The command has four spaces in a row in two of the matches. However, the browser smashes that down into a single space. I never understood that aspect of HTML but I know about it and should have considered it. I will replace the spaces with capital Xs. If you replace the Xs with regular spaces, the command should work:
    defaults write com.apple.dock persistent-apps "$( defaults read com.apple.dock persistent-apps | awk 'BEGIN{ ARRAY = "("; ELEM = "" } /^XXXX{/{ while ( $0 !~ /^XXXX}/ ) { if ( ELEM == "" ){ ELEM = $0 } else { ELEM = ELEM "\n" $0 } if ( $0 ~ "_CFURLString\"" && $0 !~ /zzzz/ ){ FOUND = "true" } getline } ELEM = ELEM "\n" $0; if ( FOUND == "true" ){ ARRAY = ARRAY "\n" ELEM }; FOUND = "false"; ELEM = "" } END{ sub( /,[^\n]*$/, "", ARRAY); print ARRAY; print }' )"
    In some sense that is poor coding but in the default syntax of the "defaults" command, the only way to determine depth is by how far something is indented. It would have been far more robust to actually count the number of opening parentheses and keep track of the depth but that would have been more complex to code. If I have time, I'll look into changing that.
       I assume that the reason the command hung is that it went into an infinite loop. I've also added a carat, '^', in front of the first group of four spaces that will keep that from happening. When typed correctly the command works without it but now it will fail without going into an infinite loop.
    Gary
    ~~~~
       United Nations, New York, December 25. The peace and joy of the Christmas season was marred by a proclamation of a general strike of all the military forces of the world. Panic reigns in the hearts of all the patriots of every persuasion. Meanwhile, fears of universal disaster sank to an all-time low over the world.
          -- Isaac Asimov

  • How can I customise a default delete action

    Dear's
    In Apex, I have report with edit button. By cliking on edit I can see the edit window with a delete button. I want to restrict this with some checks .
    The delete button should be displayed always.
    I want to utilise the default delete action, I don't want to write a code for deletion.
    On click , if the condition restrict , it should give message and should not delete that record.
    Otherwise the record shoud be deletd.
    Dennis
    Edited by: DJ on Mar 20, 2012 11:41 PM

    Dear trent
    Thanks,
    Actually I wanted use a complex condition, I want to write a funtion returing some value. Based on that I want to show a message or I want to do the delete action. If i am putting some condition for the delete button, if false, the button will not be displayed. This should not happen.
    What you mean by validation here, On which item or which action or where should I put the validation code in my senario.
    Dennis

  • SAP PI7.31 Java Single Stack  - Default Delete Job Retention period

    Hi
    anybody know where the Default Delete Job Retention periods can be set ?     I'm on a SAP PI7.31 Java Single Stack.

    thanks  - in milliseconds  - very precise.
    1) NWA-->Configuration-->Infrastructure -->Java System Properties
    2) Go to Services tab, and type XPI and select – XPI Adapter: XI
    3) Type “persist” in Properties filter
    4) for example Set Retention period in Milli seconds and save
    2592000000 = 30 Days

  • Deletion dialog URL

    Hi SAP experts,
    I'm searching for an external url for the delete iView which I can use from outside the portal.
    We implemented a small PHP application and now we need a button accessing the delete iView, because we are not interested to implement our own deleting script - because the standard command is working fine for use.
    We found a solution for the accessing the permission dialog from our application:
    http://<hostname>:<port>/irj/go/km/details/RID?isp=permissions&Standalone=true&StartPage=StandaloneDetailsPage
    And now I hope there is similar solution for the delete dialog...
    Hope you can help me
    Bye Steve

    Hello,
    Delete iView? or delete a KM res like doc or folder?
    Regards
    BP

  • Default "Deleted Mailbox" in email profile

    Hi,
    On my iPhone, I have created a new profile for IMAP email settings via a .mobileconfig download and install. However, the default "Deleted Mailbox" is Trash. On deleting mail, the user gets "Unable to Move Message. The message could not be moved to the mailbox Trash". I guess this is because "Trash" does not exist on the IMAP server.
    Is their aDefaultDeleteFolder in .mobileconfig I am missing?
    Regards
    David
    Message was edited by: justaprogrammer. Specified target.

    If you had mail saved on my mac, you can try going to your home folder>library>mail>mailboxes>select mailbox>messages, you will find find stuff in your envelope indexes. There might be some stuff there.  They will all be listed by an###. emlx so you will have to look thru them.  Hope this helps a little.

  • ADF Swing - Default LOV Dialog

    Can anyone tell me if the ADF Swing "Default LOV Dialog" was improved in JDeveloper 10.1.3? Specifically, are the same major problems with it, as documented in Frank's article at [1], still present in 10.1.3? If so, do you know if an RFE has been filed to fix it?
    Thanks
    Erik
    [1] http://www.oracle.com/technology/products/jdev/howtos/10g/jclientlov/customadfjclientlovpanel.html

    Thanks Frank,
    What about Set Allow Search? That's one of the big ones that doesn't work in 10.1.2.
    What about the extensibility of the panel? Is MyLovPanel still an inner class of JULovButtonBinding?
    Thanks
    Erik

  • Confirm Delete Dialog Box

    I accidentally checked the confirm delete dialog box, and it's now gone. Is there any way to get the confirm delete box back, with out reinstalling iTunes?

    Go here -> http://home.comcast.net/~teridon73/itunesscripts/
    and look for itunespreferencesfix.

  • Customize default Start Page

    Hello,
    I want to add the create and open web site commands to the default Visual Studio start page (2013 or 2015). Is it available anywhere to be edited? (I remember doing it in older versions.) I have only found hints on how to create one from
    scratch.
    Thanks,
    Jan

    Hello Jan,
    Thank you for your detailed explaination.
    When you see the
    Start Page link you showed, you can find this:
    To test a custom Start Page
    Press F5.
    The experimental instance of Visual Studio opens with the new Start Page installed but not selected.
    In the experimental instance of Visual Studio, on the Tools menu, click
    Options.
    In the Options dialog box, under Environment, select
    Startup. Then, on the Customize Start Page list, select your .xaml file, and click
    OK.
    On the View menu, click Start Page.
    The working Start Page is displayed. You must close the experimental instance, re-copy any changed files, and then re-open the experimental instance to see new changes.
    This means you can choose the new created XAML as your start page. So it is possible for any user to use your custom start page, as a result, the new customed page will be the default startpage. In this way, it seems it is already meet your need. Does it
    make any difference and do you have any reason that you need to do this?
    Best regards,
    Barry
    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.
    Click
    HERE to participate the survey.

  • Scheduling agreement condition type default deletion indicator in backend system

    Dear team,
    our business process is that-
    In SRM system scheduling agreement is created. once its approved from SRM in Backend ECC R3 system the same is getting replicated.
    But in few of the cases its been obserbved that the condition pricing is flowing but with deletion indicator selected by default.
    I have checked the IDOC for the same but there is no value found flowing from SRM to ECC.
    Even searched for the same Material & same vendor in some cases only observed with deletion indicator.
    For entire scheduling agreement the deletion conditions are updating that is for all line item in scheduling agreement.
    There is no info record exists.
    Appreciate if anyone can throw some light over this.

    Appa K wrote:
    Even searched for the same Material & same vendor in some cases only observed with deletion indicator.
    What is the special cases ?
    I hope you are using time dependent condition for you SA document type.
    Check is it fetching from last PO or SA ?
    What is happening, when you are trying to create SA manually via ME31L for the same material and vendor?

  • How to customize default login page of FBA

    Hi,
    I have implemented a SharePoint 2013 Portal with Form Based Authentication.
    I want to customize the look and feel of default login page.
    How could i do that?

    Hi,
    For your requirement, you can take a look at the three links below for a quick start:
    http://sivarajan.me/post/SharePoint-2013-Enabling-Custom-Login-Page-and-Mixed-Contents-Part-2
    http://blogs.msdn.com/b/kaevans/archive/2010/07/09/creating-a-custom-login-page-for-sharepoint-2010.aspx
    http://mysharepointsolution.wordpress.com/tag/custom-login-page/
    What’s more, The deafult login page is located here: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\IDENTITYMODEL\LOGIN\default.aspx, you can
    make a copy and modify it.
    Thanks
    Patrick Liang
    TechNet Community Support

  • File name display in delete dialog box

    In the course of working with photos in Lightroom, I've noticed a small user interface issue that can lead to confusion while deleting photos.
    In Explorer, a highlighted file is directly tied to any action selected via right click. For example, if I have file1 selected and I right click on file2, the focus changes to file2 and it is highlighted.
    In Lightroom, the highlight does not follow when an image is selected via right click. If I'm viewing photo1 and it is highlighted, right clicking on photo2 only changes the filename display above the filmstrip.
    Normally, this change in filename display would be sufficient visual feedback to be comfortable while deleting a file. However, if Lightroom is in the process of "Loading..." an image, there is sometimes a delay in the filename display update and more than once, I've had to pause to make sure I'm deleting the proper image.
    I've noticed this most frequently when switching back from Photoshop. If I've opened a Lightroom image in Photoshop (as a PSD) but decided not to move forward with the work, I'll switch back to Lightroom to delete the newly-created PSD. During this process, I'll hit a "Loading..." delay and and the filename display above the filmstrip will lag as I try to right click and delete what I think is the PSD.
    A simple solution, and one that I'd suspect users would appreciate given the value of RAW images, would be to display the name of the file(s) being deleted in the confirmation dialog box. If it's an important enough decision to warrant a multi-option dialog box, I think there's obvious value in confirming what is being deleted.
    Another item that came to mind -- It would be great if there was a preference setting that locked the user from deleting RAW images. That way, I'd never have to worry about selecting a RAW instead of a PSD and it would address some of the anxiety that comes with placing master images so close to PSDs from later in the workflow.

    Hi
    You can not use  File-Upload UI element inside confirmation dialog ,because there is no provision to add any UI ,except Button.
    Please avoid  my previous reply .
    Best Regards
    Satish Kumar
    Edited by: satish jhariya on Mar 3, 2009 11:29 AM

Maybe you are looking for

  • Adobe Photoshop Elements 12 won't update

    Hi! I installed Adobe Photoshop Elements 12 and Premiere Elements 12 from DVD to my new iMac that is running OS X Maverics. Elements Organizer is crashing quite often and I found out that at least in some older versions the ElementsAutoAnalyzer might

  • Sync is not working

    I go to sync my iPod touch and it says "Determining tracks to sync" and then it says "Waiting for changes to be applied" and then that's it. I want it to sync how can I get it to sync

  • Since ios7 Major Music Issues

    I have an iPad 2 and ever since I updated to ios7 my iTunes library has been a mess it will not play, there are these red boxes with red circles on each song and every time I try to play a certain album, it deletes it from my library. I have lost ove

  • Why is iMovie no longer recognizing mov. files?

    My iMovie is no longer letting me import mov. files. Also, iMovie will no longer PLAY the .mov files I have already saved in my iMovie library. Does anyone know what might be going on here? Is it possible that some recently installed update may have

  • Yesterday I installed the latest OS security update on 10.6.8. Now my Photoshop

    Anyone experiencing applications crashing after installing the latest security update in Snow Leopard?