Hello.
I've encounter an issue with ListGrid (I'm using version 7.0rc2).
I've freezed a column and after that during reloading I can see two messages "loading data".
You can see that at the screenshot: http://cid-966fa37146602c77.office.live.com/self.aspx/.Public/Pictures/sm^_listgrid^_loadmsg.png
It doesn't depend on a browser used (tried Chrome && FF).
Here's ListGrid's code:
UPDATE:
I've also tried SNAPSHOT-2010-07-20 version. There's the same behavior (two messages).
I've encounter an issue with ListGrid (I'm using version 7.0rc2).
I've freezed a column and after that during reloading I can see two messages "loading data".
You can see that at the screenshot: http://cid-966fa37146602c77.office.live.com/self.aspx/.Public/Pictures/sm^_listgrid^_loadmsg.png
It doesn't depend on a browser used (tried Chrome && FF).
Here's ListGrid's code:
Code:
var list = isc.ListGrid.create({
// View:
alternateRecordStyles: true,
leaveScrollbarGap: false,
emptyMessage: "No data",
loadingDataMessage : "Loading data...",
// Behavior:
selectionType: "single",
generateDoubleClickOnEnter: true,
contextMenu: listContextMenu,
// Data:
dataPageSize: 50,
autoFetchData: true,
dataSource: "datasource"
});
I've also tried SNAPSHOT-2010-07-20 version. There's the same behavior (two messages).
Comment