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.
2 parents 9c591e5 + 71d124e commit 0c5402dCopy full SHA for 0c5402d
1 file changed
src/XrmDefinitelyTyped/Resources/Extensions/xrm_ext_9.1-.d.ts
@@ -236,4 +236,13 @@ declare namespace Xrm {
236
*/
237
setSearchQuery(text: string): void;
238
}
239
+
240
+ interface PageEntity<T extends AttributeCollectionBase> {
241
+ /**
242
+ * Adds a function to be called when save event has completed; either successfully or with a failure.
243
+ * @param functionRef The function to add to the PostSave event.
244
+ * The execution context is automatically passed as the first parameter to this function.
245
+ */
246
+ addOnPostSave(functionRef: (context?: SaveEventContext<this>) => any): void;
247
+ }
248
0 commit comments