Datagrid dataprovider not updated after filterfunction/refresh applied.

I have a datagrid that has about 100 or so rows backed by an arrayCollection - no problems. I use a list of "topics" to filter the view in the datagrid, using a filterfunction assigned to the arrayCollection - no problem. The only editable data in the grid is a single column boolean value represented by a checkbox using an itemrenderer - no problem.
Problem: I change the state of several checkboxes for my current topic, I select a new topic, then change some check boxes under that topic. When I return to the first topic, the checkboxes are no longer checked - everything is as it was before. I would have thought the arraycollection (dataprovider) was getting updated when I changed the values of the checkboxes, but this does not appear to be the case.
So, do I need to handle an event to update the dataprovider manually before I change to a new topic, or should it work like I described and I am doing something wrong?
Thanks.

Well that would be the problem then. Sometimes this can be done automatically, but most of the time there are some additional considerations you need to take. It sounds like maybe the data state of the render is getting wiped out before the edit is committed.
I suggest skimming over the following:
http://livedocs.adobe.com/flex/3/html/celleditor_1.html
Cheers!

Similar Messages

  • Average Active Sessions graph not updated after restart

    Hi,
    I just wanted to ask - I have restarted a database (11.1.0.7) with GC 11.1.0.1 but after the restart of the db the graphs on a performance tab are not updated. It means that the doesn't refresh and doesn't show actual data...
    I checked jobs on the target database and GC repository but nothing is broken. Info on Home tab of the target DB is actual but not the graphs..
    I also tried to clearstate and restart the agent but no change..
    Any idea?
    Thanks

    This is a bug and can be solved by applying
    Patch 10307099: PERFORMANCE CHARTS DO NOT UPDATE AFTER DATABASE IS RESTARTED
    This patch is included in the july 2011 PSU: Grid Control Patch Set Update 11.1.0.1.4 for the Oracle Management Service, see MOS doc ID 1334286.1
    Eric

  • Chart does not update after table changes

    Simple X-Y chart using a data series from a table. The chart will not update after changing the table, for example after applying a filter. The chart will update if you close and reopen the file or go to Select Data on the chart.  I use named ranges
    because you can't use table nomenclature directly in the chart series definition.

    Seems to update for me OK. You need to apply the entire unfiltered range to the chart before filtering. Did you do this or filter first and only apply the visible range?
    If not the answer to you query then maybe I am not understanding the problem correctly so can you upload an example workbook?
    Guidelines to post a workbook on OneDrive
    Zip your workbooks. I prefer that you do not just save to OneDrive. (To Zip a file, in Windows Explorer  Right click on the selected file and select Send to -> Compressed (zipped) folder.)
    Go to this link.  https://onedrive.live.com
    Use the same login Id and Password that you use for this forum.
    Select Upload in the blue bar across the top and browse to the zipped folder to be uploaded and select Open (or just double click). (Be patient and give it time to display the file after initially seeing the popup indicating it is done.)
    Right click the file on OneDrive and select Share.
    Do NOT fill in the form; "Select Get a Link" on the left side.
    Click the button "Create a Link"
    Click in the box where the link is created and it will highlight.
    Copy the link and paste into your reply on this forum.
    Regards, OssieMac

  • PO item change is not updated after Delivery completion

    Dear All,
    PO item change is not updated in the PO at the completion of the delivery.for a particular line item. In our QA system, its updated but client is facing an issue with the production system. Pls check the attached screen which I got from QA. There is no such log in the production system. Kindly help me to have a solution for this.
    Regards
    Sujith

    Hi Dev,
    After we post the GR for a PO line item, PO history is updated (line) and at the same time that particular change log is available under PO line item. But in production system, said log is not updated after GR is completed fully.
    Rgs
    Sujith

  • Recent files list is not updating after 10.1.13

    Recent files list is not updating after 10.1.13 update unless I open the file via the Network in Windows Explorer.   If I open a file by accessing the file via a drive listed under Computer, the recent files list does not update.  The recent files list updates only if I open the file from the same drive listed under Network.

    Hi Bert ,
    You might want to report for a possible bug.Please refer to the following link for the same.
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&loc=en
    Regards
    Sukrit Dhingra

  • Picked Quantity is not updated After delivery in Vl03n

    After delivey in Order (VA03), the picked quantity is not updated Properly(VL03n). It is coming as Zero.
    Is it any configurations needed or writng any code.
    For that I put Break point in FMs like SD_DELIVERY_UPDATE_PICKING in program RVADEK01.
    But it is not stopping the Program.
    Please give any possible solution.

    Hi Vinod,
    Thank u For ur Answer.
    Just my Fuctional Consultant given Procedure.
    How to test the picking list. The problem is after Deliver  the Order quantity in VA03 and after saving, this will creates One Out Bound delivery.
    Now We r checking VL03n. Now it is updating the Picked Quantity Correctly, For that We r using the Standard Print program: RVADEK01, Form: RVPICSKSIN.
    Output Type: EK00, Application: V4.
    Here My problem is We copied the Form and print Program and modified according to our requirement and they configured in Nace with our own Output type.  We haven't chenged the updated Functionality and Not even Standard program. We wrote some include program for getting new values in scripts.
    Now the picked quantity is not updated after picking in VL03n.

  • Node.length not updating after removeInstance

    I have a dynamic form where line items can be added dynamically. I also have a button to remove the last line item. The code worked fine until Acrobat 7.0.7 now I get an error that the index in the removeInstance method is invalid. After doing some debugging it appears that the node.length is not updating after a removal of an instance.
    For example, the form starts with 1 line item. (node.length = 2, index = 0)
    I can successfully add a new line item (node.length = 3, index = 1)
    I then can add another line item (node.length = 4, index = 2)
    I can successfully delete the last line item (index = 2) using the following code:
    var nodelength = form1.items.nodes.length;
    //need to know which instance is being removed
    if(nodelength>2){
    items.item.instanceManager.removeInstance(nodelength-2);
    else if(nodelength==2){
    form1.items.items.Status.rawValue = "";
    form1.items.items.guestName.rawValue = "";
    form1.items.items.Payment.rawValue = "";
    form1.items.items.Entree.rawValue = "";
    At this point the items.node.length property should be 3 but it remains 4 thus causing an error when running the above script again because there is no corresponding item to remove.
    This appears to be a bug - but if I am doing something wrong please let me know. If it is a bug, please fix it.

    This sounds like a bug I recently encountered. If it's the same thing then calling xfa.form.remerge() after the removeInstance() should correct the problem. If it is the same issue, it's already been logged in order to get it fixed.
    Chris
    Adobe Enterprise Developer Support

  • Thumbnails not updating after external editing.

    I noticed the thumbnails are not updating after I use an external editor. When I bring the images full screen are they are representing correctly, but when I leave full screen the thumbnail still is not the latest image.
    I tried the update preview and Aperture said it they are updated, so I did an option and update preview and that corrected them, but this should be happening automatically.
    I did try restarting Aperture before the doing the "option - update preview" and that had no effect.

    Do you mean it is suppose to be fixed in 3.0.1? Or do I have to wait until a 3.1 comes out.
    I am using 3.0.1 now and that is where I am seeing the issue.

  • Ipad mini apps not updating after ios8.2 update

    apps not updating after software update ios8.2 on ipaD MINI WITH RETINA SCREEN

    Turn off any auto-update, if it is on, then tap any of the "circle icons" showing that a download is in progress, in order to stop the download. Then go to the Settings and reset the Network Settings. After the iPad starts back up, then check to make sure no apps are currently in progress of downloading. If any are, stop them again, and reset the network settings again. When it starts up again, none should be in the process of downloading. Then from that point forward, only download manually and never more than two at a time. If it is more than 100 MB, then do only one at a time. If any gets stuck at that point, then stop the download and reset the Network settings.
    That should take care of you for now. We'll see what another update brings ... IOS 8.2 (which might be the next one).

  • Database history growth not updating after EHP upgrade

    Hi All,
    We are using SAP ECC 6.0 (731 - SP09 )  & DB2 Fix pack 5 version.Database history growth not updating after EHP upgrade. I have check  collector job running fin and DB tab > Configuration > Data Collection Framework > Configuration Collector are in green status.
    Please help me to resolve this issue.
    Regards,
    MK

    Hi MK,
    You can try few things:
    1. Check to collector standard job like SAP_COLLECTOR_FOR_PERFMONITOR should be running succesfully.
    2.If you can check to data collector collection interval column , you will find it to be Not Schedule.
    Try with Repair all collector.
    To make it work properly you have to perform
    Data Collection Full
    Data Collection Incremental
    Hope it helps
    BR Vaibhav

  • [svn:fx-i11] 5489: i11 branch: Fix SDK-20148 Group bounds do not update after moving a child UIComponent

    Revision: 5489
    Author: [email protected]
    Date: 2009-03-23 10:04:25 -0700 (Mon, 23 Mar 2009)
    Log Message:
    i11 branch: Fix SDK-20148 Group bounds do not update after moving a child UIComponent
    Fix: add a method in GroupBase that's called whenever child x,y changes in UIComponent. GroupBase invalidates layout when autoLayout is true.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-20148
    Reviewer: Deepa
    tests: checkintests, mustella
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-20148
    http://bugs.adobe.com/jira/browse/SDK-20148
    Modified Paths:
    flex/sdk/branches/i11/frameworks/projects/flex4/src/mx/components/baseClasses/GroupBase.a s
    flex/sdk/branches/i11/frameworks/projects/framework/src/mx/core/UIComponent.as

    FYI - This regression has been filed here: http://bugs.adobe.com/jira/browse/SDK-31989

  • Regisrty keys HKEY_CLASSES_ROOT\Photoshop.Application\CLSID and \CurVer are not updated after upgrading to cc 2014

    Regisrty keys HKEY_CLASSES_ROOT\Photoshop.Application\CLSID and \CurVer are not updated after upgrading to cc 2014
    this cause to "cant create ActiveX object" error in VB Scripts
    win7 x64, ps cc 2014 x64
    any ideas? thnks

    All I can so is show you what I see in that area of my Windows 7 registry but I have CS2, CS6 32, CS6 64,  CC 32, CC 64 and CC 2014 64 installed. 6 versions yet there seem to be 9 Photoshop Application dot keys.
    Windows Registry Editor Version 5.00
    [HKEY_CLASSES_ROOT\Photoshop.Application]
    @="Photoshop Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application\CLSID]
    @="{702fe898-3f8a-483f-8ca6-3bad95fa2489}"
    [HKEY_CLASSES_ROOT\Photoshop.Application\CurVer]
    @="Photoshop.Application.80"
    [HKEY_CLASSES_ROOT\Photoshop.Application.60]
    @="Photoshop Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application.60\CLSID]
    @="{99aea70e-4d13-44bf-a878-33345cbfcbc8}"
    [HKEY_CLASSES_ROOT\Photoshop.Application.60.1]
    @="Photoshop CS6 Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application.60.1\CLSID]
    @="{6DECC242-87EF-11cf-86B4-444553540000}"
    [HKEY_CLASSES_ROOT\Photoshop.Application.70]
    @="Photoshop Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application.70\CLSID]
    @="{951ec38c-3de6-4bb8-8246-adf182e6421d}"
    [HKEY_CLASSES_ROOT\Photoshop.Application.70.1]
    @="Photoshop CC Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application.70.1\CLSID]
    @="{6DECC242-87EF-11cf-86B4-444553540000}"
    [HKEY_CLASSES_ROOT\Photoshop.Application.80]
    @="Photoshop Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application.80\CLSID]
    @="{702fe898-3f8a-483f-8ca6-3bad95fa2489}"
    [HKEY_CLASSES_ROOT\Photoshop.Application.80.1]
    @="Photoshop CC 2014 Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application.80.1\CLSID]
    @="{6DECC242-87EF-11cf-86B4-444553540000}"
    [HKEY_CLASSES_ROOT\Photoshop.Application.9]
    @="Photoshop CS2 Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application.9\CLSID]
    @="{16aa0b9e-79ac-43b5-86ca-ab961fbeed5f}"
    [HKEY_CLASSES_ROOT\Photoshop.Application.9.1]
    @="Photoshop CS2 Application"
    [HKEY_CLASSES_ROOT\Photoshop.Application.9.1\CLSID]
    @="{6DECC242-87EF-11cf-86B4-444553540000}"

  • Infostructure S502 not updated after certain date

    There is an infostructure S502. It is not updated after a certain date.
    It should be updated after saving in C011N.
    This problem seems to have propped up after upgrade to ECC 6.0. Before that it was working fine.

    I have tried a lot but still S502 is not properly updated. Basically the field for date i.e SPTAG is empty. Due to this when we try to select from MCRQ based on dates, no data is selected.
    Is it because of some setting in MC23?

  • Why do Apps not update after installing iOS6?  They just hang there!

    WHy do apps not update after installing iOS6?

    Each time? every day? Just plain crazy! Updates happen automatically on your mac....why not the same thing on ipad/iphone?
    If the app was purchased on my phone with my account, surely they do not need to "verify" my credentials each time. If my phone was stolen and someone purchased a $20 app surely my $300 phone is more important?
    They need to come up with e better solution...when we all have hundred or thousands of apps on our devices what then?

  • I have a problem with the iPhoto not updating after the hard drive recall.

    The iPhoto with not update after doing the Hard Drive Recall. It keeps saying I don't have the right ID. I have tried resetting all my passwords and no change. What do I need to do to fix this problem?

    Which OS version did you have when you acquired iPhoto and was it on a DVD (iLife) or did you download it from the app store initially?
    And, last question, did you skip Mavericks? Mavericks owners were given the opportunity to update iPhoto to an app store version free of charge; if you skipped it and do not have a backup or the installer DVD or purchased a new computer recently, then you'll need to purchase it.

Maybe you are looking for

  • HP LaserJet P2050 (2055) printer Easyprint problem

    We have Windows 2008 R2 Remote Desktop farm with deployed RemoteApps. We use Easyprint by group policy settings. No printer drivers are installed on RD servers. But every time when client computer with HP LJ P2050 printer make connect to RD farm, dri

  • ITunes kill´s Vista X-64 LogIn !

    hi there, after a few day´s of iTuning around my system breaks !! CAUSED BY ITUNES !! it started with few hangs by downriding the system. reboot by holding power-key for 4sec. etc,. after upriding all hardware again the system wasnt able to switch on

  • HOW I CAN DELETE FIREFOX ON MY IMAC

    HOW I CAN DELETE FIREFOX ON MY IMAC

  • How does oracle.apps.ego.item.preAttributeChange works?

    Pls explain the working of pre attribute change event. The business logic is implemented in pl/sql and the changes are getting commited before the validation and as per the functionality of pre attribute change event it is not supposed to work that w

  • Feature request: Replaygain support for FLAC files

    Hi guys, When converting some of my mp3's to FLAC, I noticed that the REPLAY_GAIN_TRACK tags are not used by the Walkman app on my Z3C. It works perfectly for mp3 files though. This is a real obstacle for me as I do not like having to change the volu