Merge pull request #2438 from StuartMoore/master

Corrected the microsoft-ajax PageLoadingEventArgs class.
This commit is contained in:
Basarat Ali Syed
2014-07-03 12:45:12 +10:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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;
}
+1 -1
View File
@@ -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.