Spark datagrid - how can i open entire row for editing?

Hi,
I want to create a datagrid with add button. The user can add a row and i want all the editable columns to be opened for editing.
I can open a single cell for editing by using startItemEditorSession, but how can i do it for multiple columns in the same time?

redskyventures wrote:
it seems mine has automatically done so...
I recommend you turn off the automatic update feature -- It can really cause you a lot of trouble.
Have you already determined that your coauthor cannot open your file?  If so, I suggest you go backwards, get a copy of the old iBA from him to put on your machine, so you both use the same version.  There's no way to convert iba files to anything, as far as I know.

Similar Messages

  • HT1529 how can I open the outbox for mail? That is, mail that i have finished and pressed 'send' but has not appeared in the 'sent' folder

    how can I open the outbox for mail? That is, mail that i have finished and pressed 'send' but has not appeared in the 'sent' folder

    The reason it will not be in the sent folder is, it failed to send.
    If it failed to send, then you will see the Outbox icon. 'Pending' would be a more descriptive name.
    When it eventually sends, the Outbox will not show in the Mail app interface.
    Until it is sent it will stay stuck in the Outbox.
    If it refuses to send, you can manually delete it in Finder, at the location ~/Library/Mail/Mailboxes/Outbox.mbox
    Close Mail first, before you search for that email using the Finder.
    Mail version 4.6. Mac OS version 10.6.8

  • I've bought an iphone 4 last year in the states and i live in israel how can i open my iphone for calls ? i have ios 5, i've bought an iphone 4 last year in the states and i live in israel how can i open my iphone for calls ? i have ios 5

    how do i open my iphone for israeli operation system like pelephone or orange ?
    i bought it last year in san diego

    If you bought a phone with a carrier plan, you can't "unlock" it. You will need to buy a factory unlocked iPhone.

  • How can i open my iphone for all the net works???

    hello guys
    my iphone lock to the at&t network
    how can i open him??
    help me please...

    The phone is locked by contract to AT&T.  Therefore the only way of breaking the contract is via AT&T.  You do not have any contract with Apple. Apple has nothing to do with the locking of your phone.

  • How can I have one row for each object?

    Post Author: farnaz
    CA Forum: WebIntelligence Reporting
    I have 3 objcts that one of them is ID and second one is internal code and the third one is quantity.There is more than one value for each ID (becouse of internal code).I want to create a report based on ID and quantity (not based on internal code).I make a break on ID but the result shows me more than one row for each ID.so how can i have just one row for each ID?
    another question:
    how can I post screen shot of the results to my messag in forum?

    Post Author: jsanzone
    CA Forum: WebIntelligence Reporting
    farnaz:
    Have you tried to omit "internal code" from your grid?  In normal circumstances, if you have "ID" and "Quantity" on the grid, then WebI will on its own summarize Quantity based on ID, however, this is provided that Quantity has been set up as a measure (or metric).  The quickest way to tell if Quantity is a metric or not is to observe the color of its icon when you look at it in the data panel.  If it is a purple (or sometimes appears as pink or fuscia) dot, then it's a measure, but if it is a blue box then it is a dimension.  If you need Quantity as a measure then this will have to be modified at the universe (make it look like "sum(Quantity)" in the select phase of the object, and insure the object is defined as a number....

  • How can I open a cursor for dynamic sql statement

    Hi,
    I'm facing issues opening a cursor for dynamic sql statement : PLS-00455: cursor 'RESULT1' cannot be used in dynamic SQL OPEN statement.
    CREATE OR REPLACE FUNCTION DEMO
    (MN_I in VARCHAR)
    return AB_OWNER.ABC_Type.NonCurTyp is
    RESULT1 AB_OWNER.ABC_Type.NonCurTyp;
    sql_stmt VARCHAR2(4000);
    BEGIN
    sql_stmt := 'SELECT * FROM AB_OWNER.DUN WHERE JZ_I in ('||mn_i||') ORDER BY app.ACC_I';
    OPEN RESULT1 FOR sql_stmt;
    END IF;
    return RESULT1;
    END DEMO;
    What changes should I make in the code so that it doesn't fail? I can't change the definition of RESULT1 cursor though.

    Gangadhar Reddy wrote:
    I used SYS REFCURSOR and was able to implement successfully.How many times did you run this successful implementation that does not use bind variables?
    Because this is what will happen when it runs a lot.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17766/e2100.htm#sthref1874
    http://forums.oracle.com/forums/search.jspa?q=%2BORA-04031%20%2Bbind&objID=c84&dateRange=all&rankBy=10001&start=30
    And you will have to regularly restart the server, or possibly slightly less invasive, flush the shared pool.
    Flushing Shared Pool regularly
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1516005546092
    >
    Ok, this is an easy one to diagnose.
    You are not using bind variables. This is terrible. Flushing the shared pool is a bad
    solution -- you are literally killing the performance on your box by not using them.
    If I was to write a book on how to build “non scalable applications in Oracle”, this
    would be the first and last chapter. This is a major cause of performance issues and a
    major inhibitor of scalability in Oracle. The way the Oracle shared pool (a very
    important shared memory data structure) operates is predicated on developers using bind
    variables. If you want to make Oracle run slowly, even grind to a total halt – just
    refuse to use them.
    >
    But, please feel free to go ahead with this successful implementation.
    I just hope anyone else who reads this doesn't make the same mistake.

  • How can I programmatically select row to edit in ADF - 11g

    Hello,
    I'm having a table with rowSelection="single" and editingMode="clickToEdit". Currently i'm facing two issues.
    First issue: the first click on a table row makes the row selected, on second click it becomes editable. If I click on another row it gets selected, but previously selected row remains editable. I would like to change this, so when I select another row, the previously selected one to become read-only again. By now, I didn't find any solution to set programmatically the 'editable' state of a row.
    The second issue might be a bug and is related to deleting an editable row. I select a row, click to edit it, and then delete it. The next row get's selected, but clicking on it to edit, has no effect unless I press the 'ESC' select another row before. Does anyone have a tip how to workaround it?
    Thank you very much!
    Eniko

    try adding this method in the table selectionListener.
    public void table1_selectionListener(SelectionEvent selectionEvent) {
        public String getCurrentRow() {
            BindingContainer bindings = getBindingsForDCB();
            RichTable table=table1; 
            DCIteratorBinding outListIter = getBindingsForDCB().findIteratorBinding("outlistOutIterator");
            RowKeySet rowSet = table.getSelectedRowKeys();
            Iterator rowKeySetIter = rowSet.iterator();
            while (rowKeySetIter.hasNext()) {
                    List l = (List) rowKeySetIter.next();
                    Key key = (Key)l.get(0);
                    outListIter.setCurrentRowWithKey(key.toStringFormat(true));   
                    Row r = outListIter.getCurrentRow();
            return null;
        }

  • How can I open hardware acceleration for safari 5.1.1 in Windows 7?

    It is said that safari 5 for windows supports hardware acceleration now. But I cannot open this feature in my Windows 7 laptop. Is there any way to open this feature manually?

    I know Safari a little and 5.1 can come to its knees easily and repeatedly.
    At first I thought it lasted longer if:
    disble java, plugins, javascript
    run only in Private Browsing mode
    disable web cache
    I'd like to see it launch with cache disabled and like firefox always start in Private mode.
    Plus site specific preferences
    Still accepts ad and tracking cookies - must consider those to be "well you visited the site" so the site can set whatever it wants.
    I'll use Opera 11.50 instead.
    I tried Windows "trobleshoot compatibility" it wants to set to run it in XP SP3 mode and at the end "incompatible application".
    Settings applied:
    XP SP2 mode
    Disable Aero (iTunes will lose video/movie Window if the desktop is locked for UAC)
    I've lost all borders of windows and tabs, freezes or locks up but no sign of  not responding even though I can't do anything - but I could close Windows and tabs from the Task bar.
    Total PITA and waste of time as I investigate, remove and check for conflicts with Kaspersky and others.

  • How can I open Camera RAW for Nikon D7100 with CC?

    Downloaded the trial version of Photoshop CC 2014 yesterday but it could not open the RAW file created by my newly purchased Nikon D7100. Please help.
    Regards

    One issue that can cause this is using Nikon software to transfer or view the raw images that is older than the camera.  This is known to corrupt the image and make the unrecognizable to Adobe software.  You can reverse this corruption using a utility found here:
    http://owl.phy.queensu.ca/~phil/exiftool/fix_corrupted_nef.html
    A way to test if this is the issue would be to transfer new raw images from the camera or card to your computer without using Nikon software, but instead using the OS apps like Explorer or Finder.

  • How can i open my iphone for globe network in philippines

    My iphone 4s was bought in saudi arabia. Unfortunately i cannot use it in philippines it doesnt recognize globe networks here. Can u please help

    Only the carrier ti which it is locked can unlock it.
    Contact that carrier and ask if they offer this service and if you qualify.

  • How can I use 1 JSP for edit/create functionality?

    Hi All,
    Does anybody have an example of using one JSP for both editing and creating an object? I am pretty sure I can handle most of it, but am not sure about how I can specify different messages from the resource bundle (i.e. modifying the screen title for the different uses, "New Campaign" vs. "Edit Campaign").
    My background is in PHP and DHTML (i.e. more front-end) and I'm just starting with Java and JSF. As such, I want to be sure that I'm using appropriate patterns for my programming.
    Thank you in advance for any help,
    Matt

    I make the difference between modifying an existing object and a new one by the ID in the object. Each object has a unique ID in my app assigned by the database. So if the ID is 0, the user is creating a new object, not stored in the DB yet. I store the object to be edited/modified in the session before displaying the page:
    For the title:
    <h:outputText value="Edit Material" rendered="#{sessionScope.selectedMaterial.materialId != 0}"/>
    <h:outputText value="New Material" rendered="#{sessionScope.selectedMaterial.materialId == 0}"/>For the action buttons:
    <h:commandButton value="Update Material" action="#{MaterialControllerBean.updateMaterial}" rendered="#{sessionScope.selectedMaterial.materialId != 0}"/>
    <h:commandButton value="Create Material" action="#{MaterialControllerBean.createMaterial}" rendered="#{sessionScope.selectedMaterial.materialId == 0}"/>

  • How can we open any file using JAVA...

    Hi all
    i trying to make code in that code i choose a file using a filechooser then put that file name in FILE object like (File file = fileChooser.getSelectedFile();)
    but the thing is how can i open that file for example if that file is HTML file then opens in IE or if that file is MS Word document that open in Word, like that
    is there any suggestions
    Thanx
    Regards
    Satinderjit

    start is a windows command-line utility.
    start foo.doc will start Word (or Star Office or Word Perfect or whatever is registered for the .doc extension),
    start bar.htmnl will start your registered browser etc.

  • How to work open the PDF and edit it as appropriate without going online???

    Probably sounds simple but trying to find out how I can work 'offline' without having to sign into the saved PDF document.  What I want to do is the following:
    1.  When I send my PDF document to a client and they want to amend the PDF version.  How can they open the document then edit it as appropriate without having to go online?????

    Hey juliej3731849,
    Your client would need to sign in atleast once at "https://cloud.acrobat.com/" or Adobe Reader to get the file.
    Once the client downloads and saves the file, he can go offline and then make changes in the PDF by using Acrobat (not Reader).
    Hope this helps.
    Regards,
    Anubha

  • How can i open a PDF bank statement in numbers so that the rows and columns contain properly aligned data from statement?

    how can i open a PDF bank statement in "numbers" so that the rows and columns contain properly aligned data from statement?

    Numbers can store pdfs pages or clippings but does not directly open pdf files.  To get the bank statement into Numbers as a table I would open the bank statment in Preview (or Skim) or some pdf viewer.
    Then hold the option key while selecting a column of data.
    Then copy
    Then switch to numbers and paste the column into a table
    Then repeat for the other columns in the pdf document
    It would be easier (in my opinion) to download the QFX or CSV version from your bank

  • Dream Spark Programs downloaded for MBA program - How can I open them?

    Hi,
    I downloaded Visio and some other programs below for my class through Dream Spark. However, I cannot open the programs. I have a Office 365 Home account on my Windows 8.1 computer under an Outlook email address. When I try to switch the user to my student
    account I can't sign in. I have tried for several days.  Here is the screen I get and I can't get any further.  How can I open these programs?
    wo days now. See screen shot below.

    Hi,
    Look at the screen shot you added. Do you see the Account option on the left? You need to add your student account in that place. Once done you can start switching accounts. My guess would be that there is only one account available to choose from right
    now and that is your home account.
    Maurice
    p.s. This forum is intended to ask questions about training and certification so your question might be somewhat misplaced here...
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer. Thank You

Maybe you are looking for

  • Pages documents snet by email cannot be opened

    Having used IWork08 successfully for the past 8 months, I was dismayed to find out that a colleague of mine who had just downloaded the trial version could not open the files I sent her (Pages, Keynote or Numbers). She could send me a basic template

  • During import ora-01917 user or role does not exist "High Priority"

    Hi, When i import the data the following error occured. imp system/[email protected] fromuser=dmv_ace_ruh touser=dmv_ace_ruh file=F:\dmvaceruh.dmp log=F:\dmvaceruhimp.log ignore=y fromuser=dmv_ace_ruh (exported by another database i.e database name is

  • No online information for the WRVS4400Nv2?

    I just replaced a defective WRVS4400N with a WRVS4400Nv2. Now I can't find any firmware, updates or other online. Where is the information on the WRVS4400Nv2? Sadly, the site and forum redesign is several steps backward in readability and usability.

  • How to use time capsule as hardisk?

    I googled but didn't find any answer so do you know how to use it I have the 1tb I want to use it as external hardisk I got a tip from a friend if I create a raid that would split the hardisk to two one for back up & one for regular use. But his tip

  • Java JSP application  developed in JDeveloper, would like to deploy on WebL

    Hello All Gurus: Can you tell me what to do if I have an application developed in JDeveloper, but would like to deploy on WebLogic 9x server. It deploys fine in Oracle App server(on laptop). First, I am not able to create a connection to the weblogix