You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/XrmDefinitelyTyped/Resources/Extensions/xrm_ext_9.1-.d.ts
+28-2Lines changed: 28 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -467,7 +467,7 @@ declare namespace Xrm {
467
467
* For example: quickViewControl.getControl("firstname") or quickViewControl.getControl(0)
468
468
* Returns an Object or Object collection
469
469
*/
470
-
getControl(arg?: string): any// TODO figure out return type. Maybe: Xrm.AnyControl | undefined;
470
+
getControl(arg?: string): any// TODO figure out return type. Maybe: Xrm.AnyControl | undefined;
471
471
/**
472
472
* Returns a string value that categorizes quick view controls.
473
473
* For a quick view control, the method returns "quickform".
@@ -684,13 +684,39 @@ declare namespace Xrm {
684
684
setSearchQuery(text: string): void;
685
685
}
686
686
687
+
interfaceSaveEventArgs{
688
+
/**
689
+
* Cancels the save operation if the event handler has a script error, returns a rejected promise for an async event handler or the operation times out.
0 commit comments