Looking at v13.0, create this example (I used this example and pasted this code in):
You'll see that no data is loaded upon initialization. But then, comment out the line alwaysShowOperatorIcon: true, and see what happens (the grid automatically fetches data)... Is this intentional behavior?
Code:
isc.ListGrid.create({
// alwaysShowOperatorIcon: true,
dataSource: supplyItem,
height:500,
showFilterEditor: true,
width: "100%"
});
Comment