mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 20:40:20 +00:00
Merge pull request #2438 from StuartMoore/master
Corrected the microsoft-ajax PageLoadingEventArgs class.
This commit is contained in:
@@ -660,7 +660,7 @@ function Sys_WebForms_PageRequestManager_Tests() {
|
||||
}
|
||||
var pageLoadingRequestHandler = (sender: any, args: Sys.WebForms.PageLoadingEventArgs) => {
|
||||
var dataItems: any = args.get_dataItems();
|
||||
var panelsDeleted: HTMLDivElement[] = args.get_panelsDeleted();
|
||||
var panelsDeleted: HTMLDivElement[] = args.get_panelsDeleting();
|
||||
var panelsUpdating = args.get_panelsUpdating();
|
||||
var empty: Sys.EventArgs = args.Empty;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -3829,7 +3829,7 @@ declare module Sys {
|
||||
* The pageLoading event of the Sys.WebForms.PageRequestManager class uses a PageLoadingEventArgs object to return its event data.
|
||||
* @return An array of <div> elements that will be deleted from the DOM. If no elements will be deleted, the property returns null.
|
||||
*/
|
||||
get_panelsDeleted(): HTMLDivElement[];
|
||||
get_panelsDeleting(): HTMLDivElement[];
|
||||
/**
|
||||
* Gets an array of HTML <div> elements that represent UpdatePanel controls that will be updated in the DOM as a result of the current asynchronous postback.
|
||||
* If the contents of any UpdatePanel controls will be updated as the result of a partial-page update, the panelsUpdating property contains an array that references the corresponding <div> elements.
|
||||
|
||||
Reference in New Issue
Block a user