Data in AdvanceDdataGrid not changed

Hello all,
I have really weird problem, I think it's related to datprovider or something similar.
I have data grid in ac class (as attribute of this class), in the main app, I was import that class and create new instance, and create ArrayCollection according to some parameters(inside the main), after the ArrayCollection been created I assign it to the AdvanceDdataGrid's dataProvider, and everything OK till now.
but if I'm trying to change the values in the grid, it's back to previous value immediately, it's seems like the data provider doesn't binded to the  ArrayCollection at all, but like I already said I made the assignment to the dataProvider.
PS - The grid created inside ac class, and the main flow handled in ac code.
Thanks in advance,
Avi.

I create a simple example that illustrate the problem, rty to change the grid's values,
Thanks.
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/05/11/creating-an-editable-datagrid-control-in-flex/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white" initialize="init();">
    <mx:Script>
        <![CDATA[
        import mx.controls.advancedDataGridClasses.AdvancedDataGridColumnGroup;
        import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn;
        import mx.controls.AdvancedDataGrid;
        import mx.collections.ArrayCollection;
        import mx.controls.Alert;
            import mx.events.DataGridEvent;
public var arr:ArrayCollection = new ArrayCollection([
{xyz:{x:1,y:2,z:3}},
{xyz:{x:1,y:2,z:3}},
{xyz:{x:1,y:2,z:3}}
public var grid:AdvancedDataGrid = new AdvancedDataGrid();
public var gridColx:AdvancedDataGridColumn = new AdvancedDataGridColumn("x");
public var gridColy:AdvancedDataGridColumn = new AdvancedDataGridColumn("y");
public var gridColz:AdvancedDataGridColumn = new AdvancedDataGridColumn("z");
public var gridColGroup:AdvancedDataGridColumnGroup = new AdvancedDataGridColumnGroup("xyz");
            private function init():void
            gridColGroup.dataField = "xyz";
            gridColx.dataField = "x" ;
            gridColy.dataField = "y" ;
            gridColz.dataField = "z" ;
            gridColz.editable = true ;
            gridColGroup.children = [gridColx,gridColy,gridColz];
            grid.groupedColumns = [gridColGroup]
            grid.editable = "item";
            grid.dataProvider = arr ;
            this.addChild(grid);
        ]]>
    </mx:Script>
</mx:Application>

Similar Messages

  • In the advanced tab of languages and Region the time and date formats will not change

    For a certian Application I am using I need to change the format of the Time and Date. I had no problems in Mountain Lion. In the advanced tab of languages and Region the time and date formats will not change. I need the date format to read as 01/01/14 and time format to read 13:00. As I said this was easily done in Mountain Lion and all previous Apple OS. I suspect it's an issue with in the OS.

    You're right, it has been that way for a long time. I've never bothered reporting it as a bug since it's simple enough to deal with, but reporting it would be a reasonable thing to do.

  • Date modified attribute not changing

    hie,
    the situation is this:
    everytime I modify a file in netbeans or zend (a javabased php editor), the changes made to the file are written ok, but the "date modified" attribute of the file is not changed, thous, when I try to commit (cvs) the file, the cvs clients tells me that theres nothing to commit. I have to open the file with notepad, do something, and then save it, in order to get the date changed and then send it.
    I post this here, because i believe its a config java thing, that could solve both IDE problems.
    thanks in advance for any idea.

    Apparently you are maintaining the file open; until closed, the date is not updated.

  • Date format is not changing when I switch language (From English To French)

    Hi Guys,
      In our portal (NW04-EP6) application when I switch English to French,date format doesn't changed?
    Do you kow how can I fix it?
    Thanks,
    Maryam

    Hi Maryam,
    The langauage is set according to this priority:
    1) Language assigned to the user (in the portal)
    2) Browser's Language
    3) System's language
    4) JVM's Language
    Check your settings.
    Omri

  • Date format does not change with the Regional and Language Options in 2008

    I have a one-column report that was created using the SQL "select current_date" in postgres.  (Thinks select getdate() ).
    In Crystal Reports XI when I change the "Standards and Formats" of Regional Options to:
    English (United States)  the date is in the format mm/dd/yy
    English (Canada) the date is in the format dd/mm/yy
    Japan the date is in the format yyyy/mm/dd
    In Crystal Reports 2008 when I change the "Standards and Formats" of Regional Options to:
    English (United States)  the date is in the format mm/dd/yy
    English (Canada) the date is in the format mm/dd/yy
    Japan the date is in the format mm/dd/yy
    It doesn't change.  Is this a bug?
    Thanks in advance,
    J

    hey Jason,
    i am going through some of the old forum posts and saw that no one replied to your language options post.
    for cr 2008, there are language packs for the applicable languages. there are advantages for this as you can save installation space with the option of installing language packs for each language that you want the designer application to be in.
    you have seen the disadvantage as it doesn't work the same as before.
    you do not need the language packs for testing though. in the crystal reports View menu, switch up to the Product Viewing Locale to test objects which are using "system" settings such as dates.
    if you do wish to install any language packs so that you can change up the actual language in the designer, go to your install media. in the install files "\package\langs\" directory, you will see a folder for each language that you need. install the desired language(s).
    once you have installed a language pack and then restart the cr designer, you will now have the additional language in the View > Product Locale.
    so in summary...Product Locale will change the language of the whole designer...language packs are needed for this.
    Preferred System Locale can be used to test languages without having to change your windows system settings.
    i hope that this helps,
    jamie

  • Data element description not changing in ALV output

    Hi Friends
      I changed the description of the data element from xx to yy,but this is not reflecting in the alv output,
    It is still showing xx,After activating everything and running the report I get the same problem,
    Can any one help?

    Hi,
    Write your code in following manner.
    ATA:ist_fieldcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    DATA: wa_fieldcat LIKE LINE OF ist_fieldcat.
    DATA : l_pos TYPE i VALUE 1.
      ist_fieldcat-fieldname = 'POSID'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 24.
      ist_fieldcat-col_pos   = l_pos.
    *  ist_fieldcat-ddictxt = 'L'.
      ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Appropriation Request Number'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'TXT04'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 4.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
    *  ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Status'.
      ist_fieldcat-EMPHASIZE = 'C400'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'UDATE'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 8.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
      ist_fieldcat-key = 'X'.
      ist_fieldcat-seltext_l = 'Status Date'.
    *  IST_FIELDCAT-EMPHASIZE = 'C600'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
      l_pos = l_pos + 1.
      ist_fieldcat-fieldname = 'CRTD'.
      ist_fieldcat-tabname   = 'IT_FINAL'.
      ist_fieldcat-outputlen = 4.
      ist_fieldcat-col_pos   = l_pos.
      ist_fieldcat-ddictxt = 'L'.
    *  ist_fieldcat-key = 'X'.
        IST_FIELDCAT-EMPHASIZE = 'C700'.
      ist_fieldcat-seltext_l = 'Status CRTD'.
      APPEND ist_fieldcat.
      CLEAR ist_fieldcat.
    <i>Rewards point if helpful</i>
    <b>Debjani</b>

  • Just updated my ITunes, Plays fine, but play count and date played do not change. What is going on?

    Updated I Tunes 11.0 and all plays well, just the last date played never changes and the play count remains the same no matter how many times I play the song. Not really sure where to go with this.

    Hi Liz,
    Sorry to hear you are having a similar problem.  Last night I went to the tool bar at the top of iphoto, clicked on "File",  then clicked "Browse Backups" in the drop down menu.    I have an external hard drive that is set up to Time Machine.   The Browse Backups  opened the iphoto pages in the Time Machine.  I selected a date one day ahead of the day I performed the now infamous update, and it showed my iphoto library as it had existed that day.   I then clicked  "Restore Library" at the bottom right corner of the Time Machine screen.   Roughly 2 hours later my iphoto was back to normal.   When I opened iphoto there was a message saying I need to upgrade my program to be compatible with the new version of iphoto(version 9.2.1).  I clicked "Upgrade" and within seconds it had done whatever upgrading it needed to do. 
    The only glitch in the restoration was that it restored the library as it appeared last week, so I no longer had photos I had imported this past weekend.   I simply went back to the Browse Backups in the drop down menu,  when Time Machine opened I selected the page showing my pictures from this weekend and again said to Restore Library.   Roughly 45 minutes later the library was restored including the most recent photos.  
    I am now a happy camper. 
    I don't know if any of this will be of help to you because your email says you are having trouble with photos imported after the upgrade was performed.   Have you had any pop up notices when you first open iphoto,  that tell you you need an upgrade to be compatible with the new iphoto?     If so have you clicked "upgrade"? 
    Good luck Liz,  if you have Time Machine running as a back up to your library, maybe you wil be able to get help there, by following my instructions above.   Otherwise,   good luck with your investigations.   I'd be interested in hearing how you make out.
    Karen

  • Wait for Session Data status does not change in EWA

    The hour glass next to the early watch alert in the solution manager system has the status "wait for session data". The SDCCN in the satellite system has the RFC configured correctly and the RFC is working fine when tested. I have installed the latest ST-PI and ST-A/PI for my basis release 640 on the satellite system. The basis release of the solution manager is 701. The self diagnosis button in solution manager does not list any errors or warnings for that satellite system.
    There are no errors in the task Refresh Session task in the satellite system's SDCCN:
    Refresh of session overview started from destination SM_R3SCLNT001_BACK
    > Sessions are up to date
    Refresh of session overview completed from destination SM_R3SCLNT001_BACK
    Any ideas why I can't generate the EWA in the solution manager system?

    Hello, I've got the same problem, went through the note, but it didn't solve my problem.
    Here I can say, that several points from the note are NOT clear (typically SAP...):
    I am falling in the category with ST-PI ... or newer.
    - SDCCN:
    Delete any task 'Maintenance Package' in the 'To do' tab.
    Ensure that no connection to SAP is maintained in:
    SDCCN-> Goto -> Settings -> Task specific -> RFC destinations.
    <so I deleted all the RFCs in that location>
    Ensure that connection 'NONE' is maintained, and that the 'master' flag is set.
    <surprisingly, now there is a connection that has to be maintained!! Also the 'master' flag is always grayed out for me and never clickable!!>
    Create a new periodic task 'Maintenance Package'.
    <Not working, until I added back my SM_<SID>CLNT<No>_BACK connection>
    - Step 2:
    Re-import the service definitions, c)
    They are saying how to setup the destinations, but NOT how to import the service definitions!
    So, not really sure how to interpret and apply the note... Please help! The satellite system is NetWeaver 7.3 EHP1, Solution Manager 7.1 SPS10.
    It goes on... I found this link:
    http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0CDMQFjAB&url=http%3A%2F%2Fwiki.scn.sa…
    With it, I could transfer the data to the solution manager, but I can only see 'Data is available', when I click it and tell it to start the job, SM:EXEC SERVICES 000000000400100 runs for 6-7 seconds and completes successfully, though the EWA report still says 'Data is available', but no report is being generated. I also re-executed the job SM:EXEC SERVICES and still nothing.

  • Collective orders header order basic finish date is not changing

    Hai all,
    I am working on collective orders. The header order has Basic finish date as 17.05.2011 . Now i have changed this date to 10.05.2011 and re scheduled the order . But again system changing the Basic finish date to 17.05.2011. how to solve this.
    In the outline dates also i have given finish date 10.05.2011 it is remaining the same but order Basic finish date is not changing and schedulded dates are also not changing. can anybody help.

    Hi gurus,
    In a collective order suppose the lead order is having three child orders.  Kindl
    If one of the child order is partially confirmed is the entire collective order can be rescheduled.
    If one of the child order is Fully confirmed is the entire collective order can be rescheduled
    Can any body help me out

  • Why the delivery date in the order not changing with P.O???

    Hi All,
    I am encountered with an issue that in a P.O the delivery dates are kept as customer requested delvery date and these cahnges are not updating in the order.
    According to standard SAP the change in delivery dates in a P.O should get updated in sales order.But its not happening if we keep this date as customer requested delivery date,Why is it so?
    I would explain with an example so that it would be clear:
    An order is created say 03/31/2011 and the requested delivery date is 05/02/2011.
    Confirm delivery date is 05/10/2011  (because in purchase info record it is 40 days)
    Now when P.O is created this confirm delivery dates will come.If we change these dates to any other dates it would replicate in the order.But if we keep these dates as customer requested delivery date, it is not changing in the order.
    Please any one help me out....
    Regards & thanks.
    Edited by: deepak567 on Mar 31, 2011 7:50 PM

    Dear,
    Please check the timing in work scheduling view. other wise schedule the routing and maintain time there and check your result.
    In material Master MRP2 screen you will get Scheduling Screen where you will get
    In-house production
    GR processing time
    Plnd delivery time
    These are lot size independent but value in work scheduling view are lot size dependent.
    Go to VOV8 and check the Lead time part. If u will maintain lead time of 2 days, the req deliverty date will be 2 days frm order creation date.
    You can configure this in the configuration of the Sales document type in VOV8. Here we can specify the value and as per that configuration the date will be defaulted.
    Regards,
    R.Brahmankar

  • Date format is not working properly for Calender value help

    Hi Experts,
    We have two problems.
    1. We want to change the format of date displayed. We want format of dd-MMM-yy. For that we have created one Simple
    Type Dictionary Object with Displaying format dd-MMM-yy. It is working
    fine for the non editable UI. But once I apply the dictionary type
    object as data type for an input field, probem happens. Once the user
    choose a date from calender value help the value in the input field is
    coming like 01-011-12 not like 01-Jan-12.
    The date format is not changing from the calender. But if we set the
    display format of the dictionary object to MM-dd-yy or MM/dd/yy or
    dd/MM/yy or dd-MM-yy the format conversion from calender to input field
    is happening properly.
    The only problem once we put MMM in place of MM for the input field
    where user is selecting from a calender value help.
    2. We want to restrict users from entering the value manually for date input field. The user
    should be able only to enter value by selecting from calender value
    help.
    Please give suitable solution for these problems
    Thanks
    Shankha

    Hi Sankha,
    Please refer the links below:
    http://scn.sap.com/thread/1659463
    http://scn.sap.com/thread/1533443
    Regards,
    Manoj

  • What causes cellular data usage to decrease if last reset has not changed? I reset every pay period cuz I do not have unlimited and was showing 125 mb sent/1.2g received. Now showing 98mb sent/980mb received. Last reset still shows same

        I reset my cellular data usage every month at the beginning of my billing period so that I can keep track of how much data I am using thru out the month. I do not have the unlimited data plan and have gone over a few times. It's usually the last couple days of my billing cycle and I am charged $10 for an extra gig which I barely use 10% of before my usage is restarted for new billing cycle. FYI, they do not carry the remainder of the unused gig that you purchase for $10 which I disagree with. But have accepted. Lol  Moving on.
        I have two questions. One possibly being answered by the other. 1. Is cellular data used when I sync to iTunes on my home computer to load songs onto my iPhone from my iTunes library(songs that already exist)? 2. What causes the cellular data usage readings in iPhone settings/general/usage/cellular usage to decrease if my last reset has not changed? It is close to end of my billing cycle and I have been keeping close eye. Earlier today it read around 180mb sent/1.2gb received. Now it reads 90mb sent/980 mb recieved. My last reset date reads the same as before. I don't know if my sync and music management had anything to do with the decrease but i didn't notice the decrease until after I had connected to iTunes and loaded music. I should also mention that a 700mb app automatically loaded itself to my phone during the sync process. Is cellular data used at all during any kind of sync /iPhone/iTunes management? Is the cellular data usage reading under iPhone settings a reliable source to keep track of monthly data usage? Guess turned out to be more than two questions but all related. Thanks in advance for any help you can offer me. It is information I find valuable. Sorry for the book long question.

    Is cellular data used at all during any kind of sync /iPhone/iTunes management? Is the cellular data usage reading under iPhone settings a reliable source to keep track of monthly data usage?
    1) No.
    2) It does provide an estimated usage, but it's not accurate. For accurate determination, you should check the remaining/used MBs from the carrier (most of the carriers provide this service for free).

  • Can not change data in Input Ready Query

    All,
    I have created an input ready query on an aggreagation level which has one transactional cube underlying it however, after run the query I am unable to change data in the cells even though I get a warning message saying query is ready for input
    Note:
    1. The underlying realtime cube is in "Planning Mode:Loading not allowed" state in rsa1
    2. I tried including all characteristics so that the record can be uniquely identified at that aggregation level).
    3. I am not using any characteristic restrictions
    4. I have not set any data slices
    5. I have set the property for Planning "Start query in Change Mode"
    6. I have set the 'Key Figure' Planning Properties to "Can be changed Manually or via Planning Functions" for the key figures
    7. I do not have currency/unit in row/column.
    8. There are any locks occurring
    Any pointers welcome.
    Thanks,
    Milind

    Hi Milind,
    Was wondering how was your problem solved. I get the same message when I run the query in web from query designer and in bex analyzer the cells are not updated with the changes that I make.
    I am hitting my head against the wall to figure what could be the problem as my plan query is simply based on aggregation level created directlty upon the real time info cube.
    Have cross checked all the points that you mentioned in this post but I cells do not change.
    There should be some way around to solve this problem.
    Thanks

  • Delivery dates in schedule lines is not changing in sales order

    Dear all,
    delivery dates in schedule lines on line item in sales order is not changing.delivery dates are different in schedule line of partial qtys.i have to do same delivery date on all schedule lines.
    Regards,
    Praveen

    Hi Praveen
    1. Schedule Line dates can be changed manually or by doing an availability check only.
    2. In case if you change the delivery date in the header it will not change automatically in the line item level.
    3. You need to do it manually only.
    kindly let me know more details.
    reg
    dsk

  • Schedule lines should not change 3 weeks time from MRP date

    Hi
    Is there any specific customisation required to get following results in case of schedule lines.
    1) MRP should not change/adjust the already send delivery schedule lines  which are lying within 3 weeks time from MRP date
    2) System should not allow to book the GRN unless the messages / print out has been generated from the system in case of scheduling agreement.
    Thanking you
    Shantakumar
    09944009752

    Hi,
    There are 2 possibilities:
         1. use MRP fixing using planning time fences, this is done by putting the relevant settings in the MRP1 view of the material master
         2. use the firming options of the scheduling agreement, these are set per material number that is entered in the scheduling agreement.
    The GR can only be posted for schedule lines that have been processed aka output generated.
    Regards,

Maybe you are looking for