AF:table value of text entry box does not get stored in the database.

Hello
I use af:table in my jsff page. The table contains the column of text entry box. After clicking the Create (+) button, a line has been added to the table. I got value into the text entry field and click the 'OK' button to commit the transaction. When I check the database, the entered value is not stored in the database. What I've observed, it's that if I have more than 1 table in the af: table and after entering the value into the text entry field, if I tab out and control moves to the next line, and then click the OK"" button. This time, the value you entered get stored in the database. It's look like, the value of current row is not updated until the action tab. Please help me solve this problem.

JDeveloper version: 11.1.1.6

Kind regards
Suresh

Hello

What is the business service associated to this? Also the OK button have no immediate = true set

Frank

Tags: Java

Similar Questions

  • Text entry box does not show all the text

    I'm creating a simple exercise where I want the user to copy text from the course, paste into word and report back what the number of words.  I thought that perhaps the text entry box would be the best way to go, since if you click the text (the default), you can copy it.  However after I place the paragraph of the text in the box and resize in the editor, until all of the text shows, it does not show all the text during playback is previewd or published.  It only shows the last words of the last row in the upper part of the box.

    Is there something that I am missing?  Or, is there a more easy/better way to do what I need?

    Thank you

    Hi all

    If it Captivate 4, there may be no need of a widget to do this. I'm guessing that you haven't tried allowing the scroll bar for the text of the entry (TEB) box?

    When I just plop a TEB on a blade, I get this in edit mode:

    During playback, it looks like this:

    But if I change the TEB properties and select the Show scrollbar option:

    I get this in the output:

    See you soon... Rick

    Useful and practical links

    Captivate wish form/Bug report form

    Certified Adobe Captivate training

    SorcerStone blog

    Captivate eBooks

  • Boolean value does not get stored in table correctly?

    Hello

    I use the following table to store several variables for similar movieclips:

    public var ballPlaced:Array = new Array(false, false, false);
    
    

    ... However, its not to store the Boolean value correctly in the table?

    I use the following code in the ZoneFill and the ZoneEmpty to assign a value true or false, for example;

    ballPlaced [event.target.name.substring (5)] = true;

    I called a trace to ensure that when an individual ball is placed in an area of the ballPlaced Boolean is true, and that seems to work because it returns a true value... However, I then called a trace to see the status of all and that is to say that all instances of the table are false?

    For example, I put ball0_mc in a box and the trace returns the following...

    Placed ball0_mc (true)
    Ball 0 is set, false: 1 ball is placed, false: ball 2 is set, false

    In this case the second line at the beginning should read "ball 0 is placed, it's true." I know I'm missing something critical here, but can't work out why the Boolean value is not get stored in the array?

    Here is my code... pointers would be greatly appreciated!

    package
    {
        import flash.display.MovieClip;
        import flash.display.DisplayObject;
        import flash.events.MouseEvent;
        import Ball;
           
        public class EgoGame extends MovieClip
        {
            public var _zone0Full:Boolean = false;
            public var _zone1Full:Boolean = false;
            public var _zone2Full:Boolean = false;
           
            public var ballPlaced:Array = new Array(false, false, false);
           
            public function EgoGame()
            {
                ball0_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
                ball1_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
                ball2_mc.addEventListener(MouseEvent.MOUSE_DOWN, zoneEmpty);
               
                ball0_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
                ball2_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
                ball1_mc.addEventListener(MouseEvent.MOUSE_UP, zoneFill);
               
                ball0_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
                ball1_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
                ball2_mc.addEventListener(MouseEvent.MOUSE_UP, playMovie);
               
                   
            private function zoneEmpty(event:MouseEvent):void
            {
                if(event.target.hitTestObject(zone0_mc) && _zone0Full == true)
                {
                   _zone0Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else if(event.target.hitTestObject(zone1_mc) && _zone1Full == true)
                {
                    _zone1Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else if(event.target.hitTestObject(zone2_mc) && _zone2Full == true)
                {
                    _zone2Full = false;
                    ballPlaced[event.target.name.substring(5)] = false;
                }
                else
                {
                    event.target.x = event.target._startX;
                    event.target.y = event.target._startY;
                    ballPlaced[event.target.name.substring(5)] = false;
                }  
                }
           
            private function zoneFill(event:MouseEvent):void
            {
                if(event.target.hitTestObject(zone0_mc) && _zone0Full == false)
                {
                    event.target.x = zone0_mc.x;
                    event.target.y = zone0_mc.y;
                    _zone0Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else if(event.target.hitTestObject(zone1_mc) && _zone1Full == false)
                {
                    event.target.x = zone1_mc.x;
                    event.target.y = zone1_mc.y;
                    _zone1Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else if(event.target.hitTestObject(zone2_mc) && _zone2Full == false)
                {
                    event.target.x = zone2_mc.x;
                    event.target.y = zone2_mc.y;
                    _zone2Full = true;
                    ballPlaced[event.target.name.substring(5)] = true;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                else
                {
                    event.target.x = event.target._startX;
                    event.target.y = event.target._startY;
                    ballPlaced[event.target.name.substring(5)] =false;
                    trace(event.target.name + " Placed (" + ballPlaced[event.target.name.substring(5)] + " )");
                }
                trace("ball 0 is placed, " + ballPlaced[0] + "  :  ball 1 is placed, " + ballPlaced[1] +"  :  ball 2 is placed, " + ballPlaced[2]);
            }
           
            private function playMovie(event:MouseEvent):void
            {
                if (ballPlaced[0] == true)
                {
                    ball0_mc.gotoAndPlay(2);
                }
                else
                {
                    ball0_mc.gotoAndStop(1);
                }
               
                if (ballPlaced[1] == true)
                {
                    ball1_mc.gotoAndPlay(2);
                }
                else
                {
                    ball1_mc.gotoAndStop(1);
                }
               
                if (ballPlaced[2] == true)
                {
                    ball2_mc.gotoAndPlay(2);
                }
                else
                {
                    ball2_mc.gotoAndStop(1);
                }
            }
           
           
        }
    }

    have you checked to see what event.target.name.substring (5) is back?  (TIP: check it out)

  • Data does not get inserted into the Hxt_Add_Assign_Info_F table

    Hello

    Can tell me regarding when the data is inserted into the Hxt_Add_Assign_Info_Ftable.
    Lately this table not get updates.

    Thank you
    Bitr

    When you enter the assignment of time information, this table is filled (responsibility of the OTL Application Developer > OTL time accounting > assignment of time information)

  • Synonym does public get used by the database engine in the schema of the owner?

    I have database public synonym 'P' and "S.P" table (in the "S" pattern).
    If my article references select array/object 'P' (without prefix-schema for the table), then there is no reference to the table ("S.P') or that it references a synonym ("P")?
    I understand that if my select query is executed in the session/connection made with schema/user "S", then the database engine does not at all synonymous, it will immediately table 'S.P. Is this right?
    Can you just confirm my understanding, maybe I'm wrong.

    (Oracle 10g, Windows OS)

    Fix. There is a certain order regarding name resolution.

    If I remember correctly then it searches first for the current schema objects (tables, views, procedures, etc.), then for private synonyms, then public synonyms.

    I get a bit more complex if you have a schema that is also the name of a package for example.

    For more information, see: http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/general008.htm

    Published by: Sven w. December 1, 2010 11:09

  • 'Group membership' does not get assigned to the user

    Hello

    Currently, we are implementing the authentication of the external table through single sign-on (SSO) as part of our security.
    In our portal, we have columns username, groupname and businessunit.

    As part of the implementation, I created the initialization of authentication block so that it stores the user name in the USER session variable.

    Select the username from usertable where upper (username) = upper(':USER');

    Then, I created a block of initialization of authorization in order to set the groupname. For this I used

    Select "group", groupname from usertable where upper (username) = upper(':USER');

    Now, when a user opens a session in SSO mode the user is redirected to the dashboard and initialization authentication block seems to work very well the USER session variable displays the corresponding username. Now when the user clicks on 'My account' and see his membership in a group, may not see his name of group that has been defined in the groupname column in the userstable. My scenario is similar to

    username GroupName businessunit

    x users with power Marketing
    Users are financial Mega



    For example, when the user opens a session x, it should be able to see its membership in the power users group. In this case I could assign privileges to these groups through the administration screen and my security.

    Can you get it someone please let me know where I am going wrong?

    Thank you

    Hello

    Try the debugging session.
    When you log on to the dashboard checks if the value stored in the GROUP session variable. If there is no value, I think that the user permissions are overridden. Normally users defined in the repository are priority to those coming from authentication to the external table. Make sure that the user you logged in with is not part of the repository (DPR) and comes via authentication external table.

    Let me know if you have any other questions.

    Thank you

  • Table (ADF 11 g) does not get updated on the selection of lines...

    Hi all

    I have a table element (ADF 11 g) in my page with the selection of multiple lines. I have my own row selection listener. Whenever I have select several lines with the CTRL key, the table is getting updated. It is fetching the data again for each selection. I don't want the table to get updated whenever I select a line. In the im listener manually selected do the line current. The code below is the table row selection listener.

    public void tableRowSelectionListener (SelectionEvent selectionEvent)
    {
    Add the code in the event here...
    String tableRowSelectionListener = "tableRowSelectionListener";
    Table richeTableau = (RichTable) selectionEvent.getComponent ();
    Set of keys to RowKeySet = table.getSelectedRowKeys ();
    Txn_id = number ((Number) ((Key) ((List) keySet.toArray () [0]) .get (0)) .getAttribute (0));
    int noRowsSelected = ((List) keySet.toArray () [0]) .toArray () .length;
    Rank [txnrows] = null;
    if(noRowsSelected == 1)
    {
    PscTransactionsViewImpl txnVO = (PscTransactionsViewImpl) amImpl.getPscTransactionsView2 ();
    if(txnVO!=null)
    txnrows = txnVO.findByKey (new Key (new Object [] {txn_id}),-1);
    If (txnrows! = null & & txnrows.length > 0)
    {
    SelectedRow PscTransactionsViewRowImpl = (PscTransactionsViewRowImpl) txnrows [0];
    txnVO.setCurrentRow (selectedRow);
    }
    }
    }

    How to select a row in the table easily (without the table is refreshed). ?

    Thanks in advance,
    Swathi

    Hi swati,

    Set property of 'changeeventpolicy' on 'none' & 'useRowHints' to 'default' for the list that you iterate.

    YP.

  • I use the google search page, but I don't want the previous items showing in this list, how do I remove? I deleted cookies, historical cache etc. on browser, but it's the homepage of google search that does not get rid of the previous searches.

    as stated above in the issues...

    Try to check the area of form & search history when you clear your browser history.

  • Resources does not get generated during the creation of plugin for the release/debug version of CC 2015

    I'm trying to generate a plugin release/debug for 2015 of CC using the SDK version 11.2, the build succeeds with the message below:


    merge_res.cmd done.

    1 > removal of old resources...

    1 > not found \*.idrc C:\Users\CS\Documents\GitHub\CS-DTP\IndesignPlugin\CSDTPObserverPlugin\build\releasex64\ (CSDTPObserverPlugin.sdk, resources)

    1 > 0 or the files copied

    1 > create library...... \.. \build\win\objRx64\CSDTPObserverPlugin/CSDTPObserverPlugin.lib and object...... \.. \build\win\objRx64\CSDTPObserverPlugin/CSDTPObserverPlugin.exp

    1 > CSDTPObserverPlugin.vcxproj-> C:\Users\CS\Documents\GitHub\CS-DTP\IndesignPlugin\CSDTPObserverPlugin\build\releasex64\C SDTPObserverPlugin.sdk.pln

    1 > restore_res.cmd done.

    = All build: 1 succeeded, 0 failed, 0 skipped =.


    When you try to load the plugin in InDesign, I get below error:

    "CSDTPOBSERVERPLUGIN. SOFTWARE DEVELOPMENT KIT. PLN"plug-in is missing plugin resources or the model/UI attribute is not specified in the PlugIn Version resource!





    Could you please check the .fr file included in the project is set up correctly to compile and the compilation is successful with success for this file. You can quickly verify this by right-clicking on the file in VS .fr and check if the compilation shown option is indeed active and clicking Treaty the file successfully. If all this is correct, then the next step is to check the output created by this compilation, the path of the compiled files and the command-line merge_res.

    Hope this helps you

    -Manan

  • using the text entry box or text are button

    Hello

    How do these?

    using text or text box widget box.

    to describe:

    in my first slide I text entry areas for

    1 user name

    2. name of the superior

    3. the e-mail of the superior court

    Let's say that: 1. refer to varialbe V_UserN

    2. refer to V_sup

    3 see V_emailS

    next slide would be a video

    next slide would be a text entry or a text box... It is where the user writes anything

    With the button "submit" text entry box

    What I want in this text entry box is... If the user does not write any what upone by clicking on the button submit, the interaction would be 'please write a review on the text box. If the user write something the thing, the Send button run continue.

    How can I do this?

    next slide would be an input text field or a text box... in which the user write something on the issue (this isn't a slide of questionnaire). The message would be sent to the email of superiors. How can I do this?

    hope you can help me.

    Thank you

    To check if the user didn't write anything, you will have to compare the value of the associated variable of the TEB or text box with a v_null user variable. You must create this user variable and simply leave it blank.

    Take a look at my blog:

    Where is no good?

    You create the custom with standard objects question slide. There is a widget mail included with Captivate, but did not try if you can insert the value of a variable by an email address.

    Lilybiri

  • Adobe Captivate 8 - responses of synchronization in the text entry box

    I would like to limit the time to answer a question using the text entry area, but there is no option in the properties of the input box. I know that I can use the question slides (short answer) because they have an option of limitation in time, but not much can be changed there design wise so I need to use the text entry box.

    You can use the hourglass interaction or the time. It allows you to display a message and go to another slide when the time is up. However, if you are talking about seconds, it is not very accurate.

  • Text entry box layout of date

    Hello

    Using CF9 and MS SQL Server 2008. Have a form with JQuery calendar date user insert. Data presented on the column "datetime" of database SQL Srvr.

    Have another form with cfgrid controls (format is html and selectmode is row) and select statement to fill in the data of the mask SQL Srvr. using controls cfgrid date - eg

    < name cfgridcolumn = "BeginDate" header = "Start Date" display = "" headerfontsize = "14px" width = "90" mask = "m/y" type = "date" / >

    The date in the grid is displayed as indicated by the mask - 01/03/11. Have input boxes of text on the form bound to cfgrid - eg

    < cfinput type = "text" name = "BeginDate" bind = "{reqInfo.BeginDate}" readonly = "true" width = "100px" > "

    The date displayed in the text box is killed Feb 24 00:00:00 THIS 2011.

    How can I get input of text boxes to display the date as m/d/y-01/03/11?

    I tried the mask of the text entry box - did not work. I tried convert(varchar,BeginDate,101) as BeginDate

    that also did not work. Any suggestions?

    Thanks - JS

    Change the date to a string type.  Continue to use the convert function, that is, returns a string.

  • SubSkuCommerceItem is not get recorded in the table orders.

    We created a configurablecommerce element and adds subskucommerceitem and placed an order.

    It is, subskucommerceitem is not available in the order object in the fulfillmentpipeline formations.
    In one of the formations of fulfillmentpipeline, we did order.getCommerceItems (), which returns configurablecommerceitem. Then the getCommerceItems() on configurablecommerceitem returns null.

    On analysis further below, we noticed in the database, which could be the root cause:
    1 DCSPP_ITEM table has two lines for this order, one showing configurablecommerce point, the 2nd subsku.

    2 DCSPP_ORDER_ITEM table has an entry in this order, which is the configurablecommerce item id.

    I guess that subskucommerce is not getting stored in the descriptor control point.

    Also, there is no line in the DCSPP_CONFIG_ITEM table.

    Help, please.

    Error messages: no error message.

    Gopi

    There is code to save and load in normal subSkuCommerceItems save and load pipeline processors. The fact that you see a subsidiary question in dcspp_item means that it has been saved. Expect to see paragraphs in the table of dcspp_order_item because that's only the top-level items. Subtopics should appear in dcspp_item_ci instead.

    It is possible that your question has been registered but not recharged properly. Turn on loggingDebug in LoadCommerceItemObjects should be useful if that's the problem.

    Save this sub-item and loading code depends on the parent wrapper object CommerceItem that implements the CommerceItemContainer interface. If you have a custom CommerceItem implementation that does not implement CommerceItemContainer, which confuse the ootb save and load code. Another possibility is that code loading instantiates the class incorrect wrapper, what might happen if OrderTools is misconfigured.

  • What is the button text entry box to submit to?

    Hello

    I thought that the button 'submit' set the value of the variable related to the text entry area, but I just realized that the value is set at the same time that the user enters a value.  So now my question is what does 'send' in fact?

    It triggers the assessment of the value in the variable associated with the text input box.

  • Multiple text entry boxes

    Can I get help with text input boxes?  I have a slide where I want the student to enter some multiples of two numbers.  On my blade, I put five text entry boxes.  I wonder what values are correct for the boxes, and I put 8,12,24,12,18, respectively.  I don't know how to proceed after that.  Can I put a single button "Enter" so that the answers will be verified?  If the answers are false, he will tell the student who are wrong?

    Use the variables created by the user for responses - such as v_8, v_12, v_24, v_8, v_18?

    Using variables created by the user allow me to activate Advanced Actions, depending on whether the answers are good or bad and bring them to the next slide in the series if they are correct, or have them redo this slide or to examine multiple if they are incorrect?

    I just want to understand how it goes together.  Thank you.

    c1.png

    Indeed, the value that was inserted in the TEB will be displayed, even if you clear the value of the associated variable. You need a widget for this.

    It is not possible to explain the workflow in a forum, sorry.

    Aggregation of the BER results of in Captivate - Captivate blog

    A submit button for multiple text entry boxes? -Captivate Blog

    Maybe these posts can help a bit.

    Lilybiri

Maybe you are looking for

  • Re: upgrade Windows 10.

    Hello, I have a doubt, I want to know if you can do a clean install of windows through the ISO 10 provided by microsoft. I have a pavillion 500 215el. Thank you.

  • Dolby Digital, bluetooth, screen brightness, and win7, Y550

    for as far as I know the drivers on the website of lenovo for win7 x 64 everything works except the ability to change the brightness of the screen, the button digital dolby, will get and I don't even know if its actually a function, but the ability t

  • Win2003 VM with Win2008 Datacenter license

    I have a couple of licenses Win2008 Datacenter edition for a virtual platform with two guests. I want to virtualize a former Win2003 Server, using a physical process to conversion virtual. I guess I can install a virtual machine with a "lower" than s

  • lack of winlogon.exe (or dll) in c:\windows\system32

    while eliminating some malware, I deleted the file 'winlogon.exe or winlogon.dll' dir 'c:\windows\system32 '.  of course now I can't connect to windows at all; the boots of the machine to the windows logon screen, click on admin account or user, flas

  • CD drive not reading CD in Windows Vista__

    Hello I am running Windows Vista Home Edition 32-bit on an HP laptop. My CD-ROM/DVD-ROM drive has been working perfectly until a few weeks ago. Now, it does not read the CD. The CD-ROM is built into the laptop (not an external drive) and Vista provid