Unable to uncheck checkbox

I'm relatively new and I think I am probably missing something obvious, but I am stumped.
<br><br>
Here's the situation:
I have a single Checkbox called P30_FINISH_QA_CHECK. I need P30_FINISH_QA_CHECK to default to checked and 'True' on the first load of the page, but I need the user to be able to uncheck it and reload the page. All of my attempts at this made the checkbox permanently checked and set to True.
<br><br>
My LOV definition is simple: STATIC2:Finish QA;True
<br><br>
I found Unable to uncheck checkbox, which seemed to be exactly what I needed, but I still can't get it to work.
<br><br>
I tried to follow sspadafo's suggestion, and I built a page computation set to compute after submit:<br>
begin<br>
IF :P30_FINISH_QA_CHECK IS NULL THEN<br>
:P30_FINISH_QA_CHECK := 'False';<br>
END IF;<br>
end;<br>
<br>
Then I set the source value of :P30_FINISH_QA_CHECK to True, to be used only when the current value in session state is null. The first time I load the page, it's fine, but if I uncheck the box and hit go, the box goes back to checked.<br>
I tried setting the default value to True, instead of the source value, but I got the same results. What am I doing wrong?? Please help!
Message was edited by:
gaso

Well, not my first name, but it's what everybody calls me...
My page branches to itself when the go button is pressed. Is that the same thing as a submit?

Similar Messages

  • Unable to uncheck checkbox in UIX editable table

    It seams that in editable table is unable to uncheck checked checkbox. After submit checkbox is stays checked. To check it works fine. To uncheck it in imput form also works fine. Problem is only in editable table. version jdev10.1.2. Thank you. Jara

    this is the UIX code
    <switcher childName="${uix.current.Iid.inputValue == bindings.Iid.inputValue ? 'edit' : 'noEdit'}">
    <case name="edit">
    <checkBox model="${bindings.IsDefault}" readOnly="false"/>
    </case>
    <case name="noEdit">
    <checkBox model="${uix.current.IsDefault}" readOnly="true"/>
    </case>
    </switcher>

  • Unable to uncheck hidden checkbox in RSA6

    Hi,
    I have to following problem: In datasource 0CO_OM_OPA_1 a field is marked as hidden but I am unable to uncheck the checkbox because the field is disabled (is gray so no action can be performed). Other fields in the datasource have their hidden checkboxes enabled. so it's this one field (AUTYP).
    Any idea how to enable the checkbox again because I need to add this field for extraction.

    Ok this seems to work now. Its not the kind of solution I prefer but it has done the job.
    UPDATE roosfield SET SELECTION = 'X' where OLTPSOURCE = '0CO_OM_OPA_1' AND FIELD = 'AUTYP'.

  • I am trying to edit my music list and then sync it to my iPhone 5 so I don't run out of storage space. However, I see the check marks on the iTunes library but am unable to uncheck them? How do I manually edit what will be synced to my phone?

    I am trying to edit my music list and then sync it to my iPhone 5 so I don't run out of storage space. However, I see the check marks on the iTunes library but am unable to uncheck them? How do I manually edit what will be synced to my phone? (the check marks are not bolded, does this mean they are not in my library but only on my phone?)

    You uncheck the music in your iTunes library on your computer and along with sync only checked songs and videos selected under the Summary selection for your iPhone sync preferences with iTunes, only checked songs in your iTunes library will be transferred to your iPhone or remain on your iPhone and the unchecked songs in your iTunes library that are currently on your iPhone will be removed when syncing.
    Or make use of iTunes playlists and choose selected playlists, albums, artists under the Music selection for your iPhone sync preferences with iTunes and select the playlists below that you want transferred to your iPhone.

  • Is there a way to search Numbers for UNCHECKED checkboxes?

    Hi,
    I'm attempt to build a spreadsheet to track incoming payments from various sources.  I'm using checkboxes to confirm when a payment has been received.  The question is:  is there a way to search for unchecked checkboxes so that I can find instances where a payment has not been received?
    Any tips or ideas would be greatly appreciated.

    Hi Wyatt,
    I agree with Jerry's suggestion that entering the date of payment rather than checking a checkbox is a better means of tracking the payments.
    For either entry method, you can use conditional formatting to highlight unpaid rows.
    For checkboxes, use Text is FALSE for the rule.
    For dates, use Text does not contain 2013.
    Examples are shown for both types of payment record:
    Regards,
    Barry

  • Unable to uncheck yahoo email password login box on shared computer.

    unable to uncheck yahoo email password login box on shared computer.
    == This happened ==
    Every time Firefox opened
    == i'm trying to open my yahoo account. password stays all the time.

    Clear the Yahoo cookies.
    See [[Cookies]] and [[Enabling and disabling cookies]]

  • Unable to get checkbox working in Apex 3.2.1.00.10

    We recently upgraded our production application running on apex to Apex 3.2.1.00.10. Everything works, except for the query that generates the check-box. This used to do so in the previous version 3, but does not work anymore, the code is the same...Any help is appreciated.
    (SELECT app_user, app_session, hier_username, NULL, NULL, NULL, NULL,
    ' ', HTMLDB_ITEM.checkbox (2, 1, 'onClick = "WssMasterCheck()"')
    FROM wss_uform_data
    GROUP BY app_user, app_session, hier_username)
    UNION ALL
    (SELECT app_user, app_session, hier_username,
    HTMLDB_ITEM.hidden (11, hier_code_combination),
    HTMLDB_ITEM.hidden (12, hier_parent_level_number),
    HTMLDB_ITEM.hidden (13, hier_level_type), hier_level_number,
    hier_level_name,
    HTMLDB_ITEM.checkbox (3,
    hier_level_number,
    DECODE (checked, '0', NULL, 'CHECKED')
    ) -- this is one that is not working, and does not show as checked.
    FROM wss_uform_data
    WHERE hier_level_type =
    wss_preferences_pkg.get_default_value ('WHOLESALER_LEVEL_TYPE'));

    Not sure what happened, as I had tried this before too, but I did do the change below and was trying to debug the issue on my own and trying some options, and all of a sudden it started working...The only change that I did is below:
    (SELECT app_user, app_session, hier_username, NULL, NULL, NULL, NULL,
    ' ', HTMLDB_ITEM.checkbox (2, 1, 'onClick = "WssMasterCheck()"')
    FROM wss_uform_data
    GROUP BY app_user, app_session, hier_username)
    UNION ALL
    (SELECT app_user, app_session, hier_username,
    HTMLDB_ITEM.hidden (11, hier_code_combination),
    HTMLDB_ITEM.hidden (12, hier_parent_level_number),
    HTMLDB_ITEM.hidden (13, hier_level_type), hier_level_number,
    hier_level_name,
    HTMLDB_ITEM.checkbox (3,
    hier_level_number,
    DECODE (checked, '0', 'UNCHECKED', 'CHECKED') -- replaced NULL with 'UNCHECKED' is the change I made
    FROM wss_uform_data
    WHERE hier_level_type =
    wss_preferences_pkg.get_default_value ('WHOLESALER_LEVEL_TYPE'));

  • Unable to read checkbox tag value in workshop

    I'm trying to embed a repeater tag in a form, the JSP code is, the requirement is to get a list of records and display them to the user. The user then has to select a particular row of values and this is sent back to the database. I am able to display all the rows correctly from the database, but when I put the check box on my jsp, i am unable to get the proper value of the checkbox to determine which row has been selected so that I can post those values to the database.
    I am trying to use a check box within a repeater tag, but even though I have a boolean[] varible defined in my form bean I am unable to get the form bean value for each row.
    my jsp looks as follows
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
    <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
    <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
    <netui:html>
    <head>
    <title>
    Peripheral Data available in Arbor
    </title>
    </head>
    <body>
    <netui:image src="resources/images/verio_logo.gif"/>
    <netui:image src="resources/images/about_hd.jpg"/>
    <h2>Peripheral Data available in Arbor</h2>
    <netui:form action="updatePeripheralData">
    <netui-data:callPageFlow method="getPeripheralDataArrayList" resultId="peripheralDataList"/>
    <netui-data:repeater dataSource="{pageFlow.peripheralDataList}">
    <netui-data:repeaterHeader>
    <table border="1">
    <tr>
    <td><b>Select</b></td>
    <td><b>Arbor Description</b></td>
    <td><b>Arbor Id</b></td>
    <td><b>Universal Id</b></td>
    <td><b>Revenue Type</b></td>
    <td><b>Equipment Type</b></td>
    <td><b>Journal Code</b></td>
    <td><b>Tax Group</b></td>
    </tr>
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <tr>
    <td>
    <netui:checkBox defaultValue="{container.item.dataSelected}" dataSource="{actionForm.dataSelected}"/>
    </td>
    <td>
    <netui:label value="{container.item.prod_description}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.prod_description}" dataSource="{actionForm.productDescription}"/>
    </td>
    <td>
    <netui:label value="{container.item.application_prod_id}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.application_prod_id}" dataSource="{actionForm.productId}"/>
    </td>
    <td>
    <netui:label value="{container.item.universal_prod_id}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.universal_prod_id}" dataSource="{actionForm.universalProductId}"/>
    </td>
    <td>
    <netui:label value="{container.item.revenue_type_code}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.revenue_type_code}" dataSource="{actionForm.revenueType}"/>
    </td>
    <td>
    <netui:label value="{container.item.equip_type_code}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.equip_type_code}" dataSource="{actionForm.equipmentType}"/>
    </td>
    <td>
    <netui:label value="{container.item.gl_code}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.gl_code}" dataSource="{actionForm.glCode}"/>
    </td>
    <td>
    <netui:label value="{container.item.tax_category_id}" defaultValue=" "></netui:label>
    <netui:hidden dataInput="{container.item.tax_category_id}" dataSource="{actionForm.taxCategory}"/>
    </td>
    </tr>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></table></netui-data:repeaterFooter>
    </netui-data:repeater>
    <netui:button value="Add Peripheral Data" type="submit"/>
    </netui:form>
    </body>
    </netui:html>
    I am not sure why I am unable to pass my checkbox value to my boolean variable.
    Please help.
    Thanks
    Bobby.

    1. Add your list (getPeripheralDataArrayList) as a property of the FormBean.
    2. Set the repeater dataSource to the list in the FormBean.
    3. Set he CheckBox dataSource="{container.item.dataSelected}", as well as all other members in the lists object.
    4. In the controller iterate through the list to find the row selected when the form is submitted.
    Hope this helps...

  • How can i see  the unchecked  checkboxes

    Hi i have a report like
    SELECT asthenis.a_price,
    asthenis.i_pos,
    round( (a_price -nvl(a_timi_analos,0))*nvl(i_pos,0)/100 ,2) i_meridio ,
    asthenis.a_timi_analos ,
    state_iatroy,
    HTMLDB_ITEM.CHECKBOX(1,asthenis.a_id,DECODE(state_iatroy,1,'CHECKED',null)) as check_b
    FROM iatros, asthenis
    WHERE ((iatros.i_id = asthenis.i_id_fk))
    and i have a proccess to update the checked rows
    as
    FOR I in 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    update asthenis set state_iatroy=1 WHERE a_id = to_number(HTMLDB_APPLICATION.G_F01(i));
    END LOOP;
    My q is how is it possible to see which rows a user uncheck the check boxes that are already in check state when the report renders for first time
    and do some other logic for that rows ?
    Regards
    Aris

    I think you'll have to use a collection for this.
    First, populate a collection with your query. Then base your Report Region on that collection:
    SELECT...
    FROM apex_collection
    WHERE collection_name = 'YOUR_COLLECTION'In a page process (After Submit - Before Computations and Validations), update your collection with the new values.
    In your On Sumbit - After Computations and Validations process, you could do something like this:
    DECLARE
      l_id NUMBER;
      l_notcheckedid VARCHAR2(1000);
    BEGIN
      --loop through the collection
      FOR i IN ( SELECT * FROM apex_collections WHERE collection_name = 'YOUR_COLLECTION' ) LOOP
        --loop through the array
        FOR j IN 1..APEX_APPLICATION.G_F01.COUNT LOOP
          --if the pk from your collection matches, assign it to l_id
          IF i.c001 /*your pk*/ = APEX_APPLICATION.G_FO1(j) THEN
            l_id := TO_NUMBER( i.c001 );
          END IF;
        END LOOP;
        IF l_id IS NULL THEN
          --set one of your members as a [ANTI] check so you know which ones were not updated
          APEX_COLLECTION.UPDATE_MEMBER(...
        ELSE
          UPDATE asthenis
            SET state_iatroy = 1
          WHERE a_id = l_id;
        END IF;
        l_id = NULL;
      END LOOP;
    END;I did not have a chance to test this, but it should give you the general idea of what you need to do to accomplish your task (I hope).
    chet

  • ValueChangeListner not firing on Unchecking Checkbox in TreeTable

    Hi All,
    I am working on Tree Table(based on Viewobject and viewlink to same ViewObject) in JDEV 11G.
    I have a selectBooleanCheckbox in TreeTable based on a Transient Attribute(Number datatype because in VO query as given 0 as default value in query),Changed its type to Boolean in VO Attribute.
    I have a ValueChangeListner on this selectBooleanCheckbox.
    Value Change Listner Fires
    1.When User Check or UnCheckbox Root Node.
    2.When Use Check any Child Node under Root Node or any Nested Level.
    Value Change Listner Doesn't Fires(Problem)
    1.When user uncheck any Child Node under Root Node or any Nested Level.
    Need inputs to understand the issue i.e why Value Change Listner Doesn't fire and possible Solutions.
    Amit

    Some further information about checkboxes and value change listeners to be aware of:
    Re: ADF Faces/RC: unchecked selectBooleanCheckbox PPR issue
    CM.

  • Return 'N' for unchecked Checkbox

    OK, I am sure I must be missing something simple. Embarrassed to even ask this. But I want to have a single checkbox page item in a form that will return a 'Y' if checked and return a 'N' if unchecked. I tried setting the Default Value for the item to 'N' but when I check my table, I am still receiving a NULL in the table for the unchecked box.
    Thanks in advance!
    John

    Hi,
    This article suggests a way of converting null to 'no".
    http://stackoverflow.com/questions/8329700/how-to-create-a-value-responsive-checkbox-in-oracle-apex
    Hope it helps.
    Best wishes,
    Howard

  • Unable to uncheck contol account tick for a G/L Account

    Hi All,
                 I have created a G/L Account (Control account tick box selected) and posted a Deposit entry. When I tried to uncheck contol account tickbox , System is not allowing me to do.................How do I uncheck this tick box as I have ticked this check box by mistake when I have created this G/L Account.
    Regards,
    Sree.

    Dear All,
                     Thanks for your precious Suggestions. I have created new G/L Account and reversed the transaction posted on Old G/L Account.   I have tested the same scenario on Test DB. These are the operations what I did.
    1.  I have created a G/L Account.
    2. In Journal Entry screen I have selected the newly created G/L Account. Before adding I have opened the G/L Account from the Journal Entry screen and ticked the Control account check box. and updated the G/L account.
             When I tried to add the Journal Entry system throws an error msg saying that cannot add the J.E as contol account is ticked. 
    3. I have unchecked the Control A/C check box and updated this G/L in Chart of accounts.
    4. In Deposits screen I have selected the same newly created G/L account in Bank Account Tab. Before adding I have selected Control account tick box and updated the G/L account, and added the deposit.
    And Deposit got added.
    I am wondering how is this possible???????? When I tried select the G/L account ( Contol account ticked and linked to BP Master Data) I was not able to select..........
    Is this a BUG in SAP B1 2005 PL 47.
    Regards,
    Sree.

  • Unable to uncheck queriable attribute in viewobject

    A customer of mine has build a business components viewobject in Jdeveloper 10G based on an updateable entity object and a reference entity object.
    The attribute that refers to the reference entity object (in database terms the foreign key column) has the queriable property checked. It should be
    unchecked, but the JDeveloper UI does not allow me to uncheck the queriable property for this attribute.
    What's the reason that JDevelopers forces this attribute to be queriable ? In the entity object, this attribute is not queriable

    When you create or edit your App ID on the Apple dev site, you indicate whether push is supported. The mobileprovision files include that information. Ask your client to make sure that push turned off in the App ID settings. If they have to edit the App ID, they need to rebuild the mobileprovision files.

  • How to handle unchecked checkboxes in JSP?

    I have been trying to use <input type=checkbox > tag to handle the checkbox , but it only sends values for checkboxes tht are checked .. if not checked then those checkboxes are not handled, i also came across a code like
    <% String checked = (del.equals("")) ? "" : "checked"; %>
                   <input type=checkbox name=del value="Y" <%=checked %>/>
    but this gives error tht it does not recognise 'del' attribute..
    please send me any solution at [email protected].
    thanks in advance.

    Prakash_Pune wrote:
    tell me some Debugging tech. so i can overcome from my problem.....Do you use an IDE? Any IDE ships with a decent debugger where in you can just execute the code step by step, explore the current variable values and check what exactly is happening. For example Eclipse or IntelliJ. If you don´t use an IDE, then just place some System.out.println() or Logger.debug() statements at strategic locations printing the variables of relevance so that you can track in logs what exactly is happening.
    or tell any other way to find is my page is thread safe or not...Just write correct code and narrow the scope of the variables as much as possible. If you for example assigned the user object to a static variable or as a servlet´s instance variable, then exactly the same user object would be used everywhere in the application. That kind of logical things.

  • Unable to uncheck "Allowed negative values" in depreciation area after post

    Hi Friends
    I have issue with AUC negative opening Balances and the details are below
    I have some AUCs with negative opening balances and trying to settle to Assets
    I selected the check mark " Allow negative values"  in depreciation area and settled the amount
    After that i want to uncheck but the system is not allowing me to uncheck
    please help me in this issue
    Thanks in Advance
    Sreenivas

    Hi,
    Check OABN transaction and change the settings to the dep. area.
    Regards,
    Eli

Maybe you are looking for

  • Need api for changing security role in web.xml !!

    My requirement is to change the value of the deployment descriptor "security-role" (in web.xml) through an api and inturn to persist the new value in web.xml. Also I need to know if this change is automatically redeployed or an explicit redeployment

  • Hi I'm trying to purchase but not working

    Hi I'm trying to purchase but not working. It's telling me to contact apple support. I bought today one time but I can't buy again. I contact the bank and they said there is nothing wrong from their side so the problem only with the apple store. Plea

  • Viewer IDs in Activity report doesn't display

    Hi, I would like to check which page that visited pages by user. As I run activity report that placed in System administration > Monitoring > Portal > Activity Report. The Last Week's 10 Most Popular iViews/Pages doesn't display Viewer IDs. Are there

  • Tcode in user decision step

    Dear experts, I have a user decision step. Before the approver can approve or reject the workitem i need to show a tocde screen to him. Say for example CN25. My workitem will be generated only after initiator makes changes in that tcode. I want appro

  • Where do i go to see saved tap to talk voice messages on ios 8 devices

    I just wanna know where all of my messages are after i click "keep" on the tap to talk option.