Not sure but this may help: Try to execute data bindings manually. // say at this point the array has been updated, then: var dupArray : Array = origArray as Array; /*basically create a new reference*/ gird.dataProvider = dupArray; This should rebind the data in the grid.
OR you can just do this: // say at this point the array has been updated, then: grid.executeBindings(false); Cheers, Sandeep --- In [email protected], "stevehousefl" <[EMAIL PROTECTED]> wrote: > > Using Cairngorm 2.... > > I have a datagrid in my view that is bound to an array in my model > object. My app adds a new item to the array, but the datagrid is not > updated. I see that this may not be possible using arrays and that > arraycollections are recommended. What is the best way to bind > (something) to this array and get the datagrid to update? Any advice? > > FYI... The property is an array because it is linked to a ColdFusion > component array property. I tried using Array Collection on my model > object, but it would not convert. > > Thanks in advance, > > Steve >

