Hello Experts,
I'm new with Telerik and I have a problem which i'll describe bellow:
[PREFACE]
Imagine this structure:
Default.aspx
|
|
|======> Modules|
|
|----> Module1|--->UserControl1.ascx
|--->UserControl2.ascx
there is some modules in this structure. i have a master page with a runat=server tagged DIV tag. whenever i want to use the appropriate module, I would just use the LoadControl() method and assign the loaded user control to the spoken DIV. for example if I want to use module "Module1":
contentPlaceHolder.Controls.Add(LoadControl("Modules/Module1/UserControl1.ascx"));
each user control has the appropriate controls and layer to handle requests.
[MY PROBLEM]
all the first level loadings will take place via real postback. in the first level loaded user control i have a <Telerik:RadAjaxManager> tag with the specified controls added to it and it works fine (thanx to telerik developers). the problem comes when I try to load another user control in an ajaxified DIV (for example).
When I load the specified control, I want to register new ajax settings for that dynamic loaded user control's controls collection.
BUT I CANT
any idea???
I'm new with Telerik and I have a problem which i'll describe bellow:
[PREFACE]
Imagine this structure:
Default.aspx
|
|
|======> Modules|
|
|----> Module1|--->UserControl1.ascx
|--->UserControl2.ascx
there is some modules in this structure. i have a master page with a runat=server tagged DIV tag. whenever i want to use the appropriate module, I would just use the LoadControl() method and assign the loaded user control to the spoken DIV. for example if I want to use module "Module1":
contentPlaceHolder.Controls.Add(LoadControl("Modules/Module1/UserControl1.ascx"));
each user control has the appropriate controls and layer to handle requests.
[MY PROBLEM]
all the first level loadings will take place via real postback. in the first level loaded user control i have a <Telerik:RadAjaxManager> tag with the specified controls added to it and it works fine (thanx to telerik developers). the problem comes when I try to load another user control in an ajaxified DIV (for example).
When I load the specified control, I want to register new ajax settings for that dynamic loaded user control's controls collection.
BUT I CANT
any idea???