SmartClient Version: SNAPSHOT_v11.1d_2016-09-22/Enterprise Deployment (built 2016-09-22)
Chrome on OSX El Capitan
Hell, I've just noticed that ListGrid.refreshData() doesn't trigger the dataArrived notification.
Is it a bug, or by design?
Test case:
Chrome on OSX El Capitan
Hell, I've just noticed that ListGrid.refreshData() doesn't trigger the dataArrived notification.
Is it a bug, or by design?
Test case:
Code:
isc.IButton.create({
ID:"refreshButton",
title:"Refresh Data",
click:"dsListGrid.refreshData()"
})
isc.ListGrid.create({
ID:"dsListGrid",
top:30,
width: "100%",
height: "100%",
minFieldWidth:80,
autoFetchData: true,
dataSource: "supplyItem",
dataArrived:function(startRow, endRow) {
isc.logEcho("dataArrived")
}
});
Comment