This is a migrated thread and some comments may be shown as answers.

[Solved] user control in RadAjaxPanel dissappeared when select from combobox

1 Answer 46 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Anthony
Top achievements
Rank 1
Anthony asked on 31 Jul 2009, 07:57 PM
Here is my problem. I have a page that layout like follows:

<combobox>
</combobox>
<RadAjaxPanel>
<usercontrol>
<updatePanel>
<asp:Literal>
</asp:Literal>
</updatepanel>
</usercontrol>
</RadAjaxPanel>

the literal control will show some text when selection in combobox changed. But everytime when I change a selection in combobox, the user control just dissapeared. Can someone help me out here?  Thanks a lot

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 04 Aug 2009, 09:16 AM
Hi Anthony,

The Combobox will cause normal postback since it is placed out side the radAjaxpanel, try include that also inside the radajax panel and let me know how it goes.

<RadAjaxPanel>
<combobox>
</combobox>
<usercontrol>
<updatePanel>
<asp:Literal>
</asp:Literal>
</updatepanel>
</usercontrol>
</RadAjaxPanel>

-shinu
Tags
Ajax
Asked by
Anthony
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or