Hi All,
I have a presave function, once the item is saved I need to reload the page.
function PreSaveAction() {
var txtTitle = $(":input[title='Title']").val();
if (txtTitle == "") {
alert("Please enter a title");
return false;
} else {
return true;
RefreshPage(SP.UI.DialogResult.OK);
}
}Thanks in Advance, Jiniv Thakkar