work-item-form/workItemGroup.html [44:71]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - }); }); }, // Called when the active work item is being unloaded in the UI onUnloaded: function (args) { $(".events").empty(); $(".events").append($("
").text("onUnloaded - " + JSON.stringify(args))); }, // Called after the work item has been saved onSaved: function (args) { $(".events").append($("
").text("onSaved - " + JSON.stringify(args))); }, // Called when the work item is reset to its unmodified state (undo) onReset: function (args) { $(".events").append($("
").text("onReset - " + JSON.stringify(args))); }, // Called when the work item has been refreshed from the server onRefreshed: function (args) { $(".events").append($("
").text("onRefreshed - " + JSON.stringify(args))); } } }); VSS.notifyLoadSucceeded(); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - work-item-form/workItemPage.html [47:74]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - }); }); }, // Called when the active work item is being unloaded in the UI onUnloaded: function (args) { $(".events").empty(); $(".events").append($("
").text("onUnloaded - " + JSON.stringify(args))); }, // Called after the work item has been saved onSaved: function (args) { $(".events").append($("
").text("onSaved - " + JSON.stringify(args))); }, // Called when the work item is reset to its unmodified state (undo) onReset: function (args) { $(".events").append($("
").text("onReset - " + JSON.stringify(args))); }, // Called when the work item has been refreshed from the server onRefreshed: function (args) { $(".events").append($("
").text("onRefreshed - " + JSON.stringify(args))); } } }); VSS.notifyLoadSucceeded(); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -