How to hide the button cancel on LOV

Hi all!

I have a very strange requirement, so I want to consult you forms - the Experts for this:

A LOV customer want to hide it from the button cancel user must choose only one value. Is this possible?

My suggestion to change the object Type LOV to List Item (text-> list item element) want not customer...

See you soon!


Environment:
Forms [32 bit] Version 10.1.2.0.2 (Production)
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64 bit Production
With partitioning, OLAP and Data Mining options
Oracle Toolkit Version 10.1.2.0.2 (Production)
PL/SQL Version 10.1.0.4.2 (Production)
Oracle V10.1.2.0.2 - Production procedure generator
PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
Query Oracle 10.1.2.0.2 - Production Designer
Oracle virtual graphics system Version 10.1.2.0.2 (Production)
The GUI tools Oracle Utilities Version 10.1.2.0.2 (Production)
Oracle Multimedia Version 10.1.2.0.2 (Production)
Oracle tools integration Version 10.1.2.0.2 (Production)
Common tools Oracle area Version 10.1.2.0.2
Oracle 10.1.0.4.0 Production CORE

I do ' t think you can disabled the button cancel on the LOV. This is the default functionality of forms.

Concerning

SUN

Tags: Oracle Development

Similar Questions

  • How to hide the button only break on the toolbar at run time

    Hello

    I had to hide all the buttons as run, run streaming, vi and other abandoned by accessing the properties VI and by unchecking the corresponding options.

    When I run the vi, everything becomes hide except the pause button and I found no option to hide manually as well as programmatically.

    can someone tell me how to hide the pause button. I have an urgent need for same.

    Thank you best regards &,.

    Samriddh Sarbalhi

    Hello

    You need...

    Properties of VI--> execution

    Turn off "enable debugging".

    Rod.

  • How to remove the button cancel default of the dialog system?

    Hi all

    I wanted to remove the button cancel default from the system dialog box. After doing some searching on Google has got a solution

    cancelButton.label: the undefined, but all using this line of qml in error "invalid property.

    Here is my code.

     SystemDialog {
                id: userNameValidation
                title: "Alert!"
                body: "Please enter user name"
               cancelButton.label: undefined
            }
    

    Eralier this worked but once I updated my IDE QNX after getting error on

    cancelButton.label: undefined
    

    Any solution?

    Thanks for the reply. will do the same

  • How to hide the button "Start a conversation" using mozilla.cfg

    Hello

    I've just updated to FF 41.02 and my mozilla.cfg does not hide the smiley face icon (start a conversation). Anyone know how I can do this?

    Here's the line I use for my mozilla.cfg to show/hide icons

    lockPref("browser.uiCustomization.state", "{"placements":{"PanelUI-contents":["edit-controls","downloads-button","new-window-button","privatebrowsing-button","zoom-controls","developer-button","fullscreen-button","preferences-button","history-panelmenu","save-page-button","find-button","add-ons-button","loop-button"],"addon-bar":["addonbar-closebutton","status-bar"],"PersonalToolbar":[],"nav-bar":["urlbar-container","search-container","print-button","home-button"],"TabsToolbar":["tabbrowser-tabs","new-tab-button","alltabs-button"],"toolbar-menubar":["menubar-items"]},"seen":[],"dirtyAreaCache":["PersonalToolbar","nav-bar","TabsToolbar","toolbar-menubar","PanelUI-contents"],"currentVersion":4,"newElementCount":0}");

    Thank you

    Hello

    I managed to get out.

    lockPref ("loop.enabled", false);

  • How to create the button cancel in the message pop up

    Hi gurus,

    My requirement is that we need a few customizations in the existing custom form.
    (1) if we click on Edit button it will display a pop-up message with "Id has been changed with the OK button. I did this customization.
    (2) now our new requirement is that if users want to undo the change after you click the button change, we need a message pop-up as above as well as the Cancel button.

    I jst wrote my code of the trigger 'WHEN-BUTTON-PRESSED' for the 1st req by calling a function from the packaging.
    Could someone give me some suggestions about the 2nd requirement?

    Looking forward for your reply.

    Thanks in advance.

    You can create an alert with 3 buttons (Yes, no, cancel)

    And then write your code as follows

    DECLARE
    number of alert_button;
    BEGIN
    alert_button: = SHOW_ALERT ("MY_ALERT");

    IF alert_button = alert_button1 Then
    -code that will record changes
    ELSIF alert_button = alert_button2 Then
    -code that will restore changes
    ON THE OTHER
    -code that will simply put the cursor on the record
    END IF;
    END;

    Hope that answers your question
    Sandeep Gandhi
    OMKAR Technologies Inc.
    Techno-Functional consultant

  • How to hide the buttons ' delete this site "/" detach this site "of my page newtab shortcuts?

    Hi, I was wondering if it is possible to remove the buttons on my top pinned sites that are new tab on my page. I use page tab as my home page and that you customized to have selected 12 best sites of my choice pinned it. However sometimes I accidentally press detach it or Remove button in the corners of these windows when I try to click on the page. Is it possible to remove these buttons or do a warning before they are automatically deleted with a single click?
    Thank you!

    Hello

    1. Install Stylish and restart Firefox when prompted.

    2. Click on the Firefox button or the Tools menu and select Add-ons.
    3. In the Add-ons Manager, click the Styles of the user on the left category.
    4. Click on the writing of a new Style of button at the top. Paste the following text in the text box, name the style, and then click the "Save" button.
    @-moz-document url("about:newtab") {
    
    .newtab-control-pin,
    .newtab-control-block {
      display: none !important;
    }
    
    }
  • How to remove the button cancel in SystemDialog in QML?

    I have this in QML to display dialog system.

    {SystemDialog}
    ID: myQmlDialog
    Title: 'title '.
    body: "Hello."
    }

    and I call it with myQmlDialog.show)

    everything works except that I have buttons OK and cancel both.  He tried to add

    myQmlDialog.cancelButton.setLabel (null) before calling show() and it does not work.

    In C++, I have no problem.  What is the trick?

    It worked for me:

    // Default empty project template
    import bb.cascades 1.0
    import bb.system 1.0
    
    // creates one page with one button and a SystemDialog
    
    Page {
        Container {
            layout: DockLayout {
            }
            Button {
                text: "Push"
    
                attachedObjects: [
                    SystemDialog {
                        id: myQmlDialog
                        title: "My Title"
                        body: "Message Body"
                        cancelButton.label: undefined
                    }
                ]
                onClicked: {
                    myQmlDialog.show()
                }
            } // button
        }
    }
    

    In your .cpp file, be sure to add:

    #include 
    

    And in main():

    qmlRegisterType("bb.system", 1, 0, "SystemDialog");
    

    Also add in your .pro file:

    LIBS += -lbbsystem
    
  • How to hide the buttons when no data found!

    Hi all

    I created two regions

    1 Serach region
    2 results region.

    Initially during the loading of the page with the help of hidden drive I'm Basel to hide 'areas of results' once that they clik this serach button I display area with teo translated region more buttons as buttons 'export' and 'print '.

    It shows very well when there is data in the region of Reulst.
    But when there is no return I displays the message "No data found" but at the same time it displays 'export' and buutons 'print '.
    This button should show only when data are available in the results area.

    Thank you
    David...

    abhishek8299 wrote:
    Use SQL statements (Exists) in the State and write an sql statement it.

    Use this

    SELECT
    1
    FROM form1 MF,bench1 BM,
    participant1 PP,key1 KT
    WHERE MF.ENGAGEMENT_ID=BM.ENGAGEMENT_ID
    AND BM.ENGAGEMENT_ID =PP.ENGAGEMENT_ID
    AND PP.ENGAGEMENT_ID =KT.ENGAGEMENT_ID
    
  • How to hide the buttons in the search bar

    http://i.imgur.com/62bsQ.PNG

    Summer play with it. and created default filters

    but I have no idea how I could get rid of these buttons...

    Hello

    Click report attributes, look for the region of the detail view and change the list item Detail View enabled on 'no '.

    Thnx
    MK

  • How to hide the button according to app_user

    Hi friends,
    I have a requirement where a 'create' button will be displayed (do not allow to the) only if the APP_USER, Y. How can I do this?

    Thanks and greetings
    Umer

    What do you mean by "do not allow to the?

    You can put this in the State of a toggle its appearance button

     :APP_USER = 'Y' 
    

    Are you a programmer ex-formes? I was wondering why you want to display a button without allowing it?

  • Customization of the user interface in 4beta2: hide the button new tab

    Question

    I have another type of problem with Firefox

    Description

    I want to know how to hide the button new tab especially when (be precise)
    tabs [[overflow = "true"]
    I tried to change this code:

    .tabs-newtab-button {
    display: none
    }

    but during overflow the new tab button appears again.
    Maybe this isn't the right place for these issues, I still need a solution

    Version of Firefox

    4.0b1

    Operating system

    Windows 7

    User Agent

    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; B 1 RV:2.0) Gecko/Firefox/4.0b1 20100630

    Plugins installed

    • -Shockwave Flash 10.1 r53
    • 4.0.50524.0
    • Adobe PDF plugin for Firefox and Netscape "9.3.3.

    Try:
    #new-tab-button, .tabs-newtab-button {
    display: none;
    }

    You can also drag the new tab button in the window customize (view > toolbars > customize)

  • Hide the button

    Helllo all,.

    How to hide the button EXPORT in the DocumentViewerRN? The export button is filled in when the user clicks on the button RUN in this region. So I need to make this button visible EXPORT button press the button RUN.
    Note: This DocumentViewerRN is a seeded region I import in my page to view my pdf output.

    Thank you much for the help in advance.

    Kumar

    Hello

    you need to expand the controller in the region and processformrequest
    get the handle to the submit button run and set the property made by.

    Thank you
    Gerard

  • Hide the button label Radio via Javascript

    Aloah,

    I have a problem with the cache one option button and label.

    Location:

    I have two groups of Radio with 3 radio buttons.
    Click on a radio button within the first group, I would like to hide the 2 buttons in the second.

    I tried the x_ToggleItem of javascript functions, the x_Hide and the x_ToggleItemRow.
    But all the functions to do the same thing:
    They hide only the button (input type), but not the label (not the Label of the Radio group, but the radio button label).

    So my question is:
    How to hide the button Radio WITH his label?
    Or: How I address the label in JavaScript?

    PS: in the future I will bore you guys more often with questions: P

    MFG,
    Andi

    Hello Andi,

    The problem is that the current implementation of the input element radio group and the label are "separated". There is no common parent (as it should be IMHO).

    But there is... jQuery. Using jQuery you can hide an element with the id and hide the label using the next() method.

    If something like this (where P13_RG1_3 is the 3rd option in a radiogroup):

    $('#P13_RG1_3').hide (); $('#P13_RG1_3').next () .hide ();

    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    You can reward this response in marking it as useful or Correct ;-)

  • How to set a value of outputText 0 during the click on the button cancel using javascript

    Hi Experts,

    JDEV version 12.1.3.0

    I have an outputText at the foot of the column. And I have a button cancel on the top of the page. Then click on the button cancel. How can I set the outputText zero value.

    Thank you

    AR

    Hello

    Please check the labour code. Make clientComponent = "true" in the output text.

    function customOutputValue (event) {}

    var buttonComponent = event.getSource ();

    Find the client component for the af:outputText 'greeting '.

    var oComponent = buttonComponent.findComponent ("ot1");

    Set the value of the outputText component

    oComponent.setValue("0")

    }

    >

    Thank you
    Amey

  • How to hide the "quit firefox" button using userChrome.css?

    I added the add-on "Restart" and want to make sure that I have accidentally do not click on the button "exit firefox" in the main menu of firefox. What should I add to my userChrome.css file to hide the button?

    #PanelUI-quit { display:none !important; }

    Alternatively, you can consider changing the order of these buttons with rules of - moz-box-ordinal-group.

    #PanelUI-quit
    #PanelUI-customize
    #PanelUI-help
    

Maybe you are looking for