onStoreLoad

fires after data is loaded from external resource

void onStoreLoad(object driver,array data);
driverobjectdata driver
dataarrayraw external data

Example

view.data.attachEvent("onStoreLoad", function(driver, data){
    //... some code here ... 
});

See also
Back to top