I have MasterPage and its ChildPage. On ChildPage I have JavaScript function that is raised on RadSplitter.OnClientLoad="abc". Basicly, this fires on page load as last client event and that is good for me to do something.
This works normally.
Now I want to add one JavaScript-to-AjaxRequest function to MasterPage, I want to check something from database when every ChildPage gets focused, something like this (this is on MasterPage):
Because I can't have two AjaxManager (on MasterPage and ChildPage), I put AjaxPanel in MasterPage.
So, when I request ChildPage in browser, both AjaxRequests should be fired, first one in MasterPage and then from ChildPage. RadAjaxPanel1.ajaxRequest from MasterPage works but AjaxManager.AjaxRequest from ChilPage don't work! When I remove function from MasterPage, function from ChildPage works normally and vice versa.
How to set both AjaxRequests work together, simultaneously? Obviously there is some conflict beetween them.
There is many articles on Internet about multiple AjaxRequests on same time but I don't understand what to do to correct problem.