I have a dashboard that has several stand alone tables in it. When I insert an new record in a table though it updates and doesn't allow me to edit it straight away, I have to do a physical refresh of the page (F5). Could somebody please help in telling me how to refresh a dashboard after inserting a new record?
I've tried:
this.on('afterEdit', function(fieldsData){
location.reload();
}
this.on('afterAdd', function(fieldsData){
location.reload();
}
Thanks
I've tried:
this.on('afterEdit', function(fieldsData){
location.reload();
}
this.on('afterAdd', function(fieldsData){
location.reload();
}
Thanks