SmartClient Version: v11.0p_2016-08-04/Enterprise Development Only (built 2016-08-04)
Chrome on OSX
Please modify the #databoundFetch sample like this:
then edit a record of the first grid, ie modify a 'capital' field with a dummy value. You'll see that the edited record is integrated in both grids resultSets.
Chrome on OSX
Please modify the #databoundFetch sample like this:
Code:
isc.ListGrid.create({
ID: "countryList",
width:500, height:224, alternateRecordStyles:true,
canEdit:true,
dataSource: worldDS,
autoFetchData:true,
implicitCriteria:{continent:'North America'},
fields:[
{name:"countryCode"},
{name:"countryName"},
{name:"capital"},
{name:"continent"}
]
});
isc.ListGrid.create({
ID: "countryList2",
top:250,
canEdit:true,
width:500, height:550, alternateRecordStyles:true,
dataSource: worldDS,
autoFetchData:true,
implicitCriteria:{continent:'Australia/Oceania'},
fields:[
{name:"countryCode"},
{name:"countryName"},
{name:"capital"},
{name:"continent"}
]
})
Comment