Is there any way to use the “attachObject” and “attachURL” functions on the same window?
What I am attempting to do is load an object into a modal window:
myModal.attachObject(‘obj_id’);
and then append dynamic content (via ajax request), to that window:
myModal.attachURL(my_url, true);
One solution that I was pondering, was to add a callback function to the “attachURL” ajax call, so that I could insert the object after the dynamic content was loaded. But I could not find a way to add a callback to the ajax request.
It would be ideal if the “attachURL” function returned the deferred:
var def = myModal.attachURL(my_url, true);
def.addCallback(myCallbackFunction, [param1, [param2],…]);
Please advise.
You can try to use the following approach:
dhxWins.attachEvent(“onContentLoaded”,function(){
myModal.appendObject(‘obj_id’)
})
myModal.attachURL(my_url, true);