Tag Archives: refresh

Refreshing a dojo datagrid json store

var customerGrid = new dojox.grid.DataGrid({ query: { customer_id: '*' }, store: customerJsonStore, structure: layout, queryOptions: {ignoreCase: true}, rowsPerPage: 20 }, 'gridNode'); function loadSpecificCustomerIntoGrid(selectedCustomerId) { // You can refresh a grid by updating the json store behind it customerJsonStore.fetch({ query: { … Continue reading

Posted in General | Tagged , , , , | 8 Comments