After an inline edit, I need my page to refresh, as my records will no longer be displayed on that particular list page.
I've seen a solution for ASPRunner,
xt.assign "savealllink_attrs","disptype=""control1"" name=""saveall_edited" & id & """ style=""display:none"" onclick=""$('a[@id^=save_]').click();window.location.reload( true );""",
But I cant find the equilevent for PHPRunner.
I've also found this on the javascript onload but it does not work.
this.inlineEdit.saveAllButt.bind("click", function(e){
inlineEdit.saveAll();
location.reload();
});
Any help is appreciated.