hi,
I’m a new user and i’m trying to use datastore.
I have two different datastore :
data1 [ id,name,surname]
data2 [ id,last_latitude,last_longitude]
the first data store it’s static data, the second is refresh data. I would like to bind data1 and data2 in the same grid.
I tried to use
mygrid.sync(data1,function(data1,data2) {
data1.id == data2.id;
});
Do you have idea if it’s possible to do it
regards
D YUNG