Refreshing the scheduler without using location.reload

Is there a better way to update the page as opposed to location.reload();

Thanks for any tips…

[code]scheduler.attachEvent(“onEventSave”, function (id, data) {

if (data.UserId != userQueryString) {
//
} else {
    data.UserId = userQueryString;
}
location.reload();
return true;

});[/code]

Just to note my data is being populated by an MVC ActionResult