I have the following scenario: User is able to drag-and-drop controls onto the page. Whenever the user drops a control on the page, I queue up the event and display a loading panel. I only process one event at a time, and do not cancel events which are already being processed.
In this way, the user could drag-and-drop two items quickly. I would like to display two loading panels (which I can do), and remove the appropriate loading panel when the corresponding event finishes processing.
I am struggling with obtaining the ID of the control which is responsible for the endRequest event which I am in. Basically, I have a list of displayed loading panels which are coupled with the ID of the control which started the event. I would like to find the loading panel in the list based off of the ID of the control inside of PageRequestManager's endRequest event.
Here's what I've got:
var dockZoneDroppedOnID = "";
var displayOverBaseID = "";
//Handles drawing the LoadingPanels over the correct elements when callbacks are occurring.
var loadingPanel = "";
var pageRequestManager = Sys.WebForms.PageRequestManager.getInstance();
var postBackElement = "";
pageRequestManager.add_initializeRequest(initializeRequest);
pageRequestManager.add_endRequest(endRequest);
//This will display a loading panel over a control. It's useful to change what the loading panel is being
//displayed over in some scenarios because it just doesn't look quite right. e.g. when moving between panels
//the loading panel should only be the size of the pane that the dock is moving to, not the full size of the dock currently.
function initializeRequest(sender, eventArgs) {
loadingPanel = $find(radAjaxLoadingPanel1ID);
postBackElement = eventArgs.get_postBackElement().id;
//When drag and dropping the 'interesting' control isn't where we're coming from but where we're going to.
if (dockZoneDroppedOnID != "") {
postBackElement = $find(dockZoneDroppedOnID).get_parent().get_id();
dockZoneDroppedOnID = "";
}
else if (displayOverBaseID != "") {
postBackElement = displayOverBaseID;
displayOverBaseID = "";
}
loadingPanel.show(postBackElement);
}
//This will hide the loading panel thats currently being displayed and,
//if the user decided to continue dropping things onto the page, it will fire
//the next event.
function endRequest(eventArgs) {
//var eventTarget = $get('__EVENTTARGET').value;
//alert('Response end initiated by: ' + eventArgs.get_dataItems());
loadingPanel = $find(radAjaxLoadingPanel1ID);
loadingPanel.hide(postBackElement);
if (droppedItemQueue.length > 0) {
droppedItemQueue.shift(); //Remove the ID of the control we just finished.
droppedItemQueue.shift(); //Remove the data for the control we just finished.
}
//If we've got more ajax requests queued up.
while (droppedItemQueue.length > 0) {
var uniqueDockZoneID = droppedItemQueue.shift();
var data = droppedItemQueue.shift();
$find(radAjaxManagerID).ajaxRequestWithTarget(uniqueDockZoneID, $.toJSON(data));
}
if( resizeQueue.length > 0) {
resizeQueue.shift(); //Remove the ID of the control we just finished.
}
while (resizeQueue.length > 0) {
var resizedID = resizeQueue.shift();
$find(radAjaxManagerID).ajaxRequestWithTarget(resizedID);
}
}
I played around with a couple of different avenues of code in endRequest, but wasn't able to dig up any information. The currently commented out code fetching eventTarget returns string.Empty. Other attempts, such as eventArgs.EventTarget return undefined.
I feel like this should be pretty trivial, but I'll be damned if I can't figure out the right property.
Anyone know?
Thanks
EDIT: Just to be clear... there is currently a guarantee that the order the controls are queued up will be the same order as they finish, but I am trying to not put that dependency on the code.