Hi guys
i am using sakis dd grids and its nice works perfect my issue is with the platform.
i am trying to get the id's of alll the records in the grid that has been altered eg the destination grid, what is happening is no matter how many records i add the first record always comes up as NAN as its record.data.id in the function store.each, take a look
Code:
var newPackageMovies;
Ext.getCmp('grid2').getStore().each(function(r){
newPackageMovies = newPackageMovies + r.data.id + ',';
});
// RESULT: NaN,2,6,8,4,
no matter how many i add its always the first one comming up as NaN
basicaly i need to post this data thats why i am concating a string
thanks for any suggestions