We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 800e3f4 commit e05fdcbCopy full SHA for e05fdcb
1 file changed
src/XrmDefinitelyTyped/Resources/Extensions/xrm_ext_9.1-.d.ts
@@ -91,4 +91,13 @@ declare namespace Xrm {
91
*/
92
setVisible(visibility: boolean): void;
93
}
94
+
95
+ interface PageEntity<T extends AttributeCollectionBase> {
96
+ /**
97
+ * Adds a function to be called when save event has completed; either successfully or with a failure.
98
+ * @param functionRef The function to add to the PostSave event.
99
+ * The execution context is automatically passed as the first parameter to this function.
100
+ */
101
+ addOnPostSave(functionRef: (context?: SaveEventContext<this>) => any): void;
102
+ }
103
0 commit comments