hello.
Use the onSave event to execute code after saving a record in edatagrid.
$('#MyEDatagrid').edatagrid({
onSave:function(index,row){
window.top.location.reload(); //reloads the entire page
}
});
or you coudl just reload the edatagrid
$('#MyEDatagrid').edatagrid({
onSave:function(index,row){
$('#MyEDatagrid').edatagrid('reload');
}
});
hope that helps