Click here to Skip to main content
15,892,805 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i m facing problem regarding balloon popup extender of ajax i.e when give id to it's property (BalloonPopupControlID) then that control couldn't shown on page when i run my application ???
Posted
Comments
willington.d 26-Feb-13 23:48pm    
Could you please post your code here.
vihangshah 26-Feb-13 23:54pm    
width="70%" align="center">
<asp:TextBox ID="TextBox1" runat="server" BorderColor="#FF0066"
BorderStyle="Ridge">hello
<asp:BalloonPopupExtender ID="TextBox1_BalloonPopupExtender" runat="server"
BalloonPopupControlID="panel1" CustomCssUrl=""
DisplayOnFocus="True" DisplayOnMouseOver="True" DynamicServicePath=""
Enabled="True" ExtenderControlID="" TargetControlID="TextBox1"
Position="BottomRight" BalloonStyle="Cloud" ScrollBars="None">
[no name] 28-Feb-13 2:26am    
<asp:ScriptManager ID="ScriptManager1" runat="server">

<asp:TextBox ID="txtName" runat="server">

<asp:Panel ID="Panel1" runat="server">Hello

<asp:BalloonPopupExtender ID="BalloonPopupExtender1" runat="server" BalloonPopupControlID="Panel1" TargetControlID="TxtName" BalloonStyle="Cloud">

This will work out

"
XML
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>

<asp:TextBox ID="txtName" runat="server"></asp:TextBox>

<asp:Panel ID="Panel1" runat="server">Hello</asp:Panel>

<asp:BalloonPopupExtender ID="BalloonPopupExtender1" runat="server" BalloonPopupControlID="Panel1" TargetControlID="TxtName" BalloonStyle="Cloud">
</asp:BalloonPopupExtender>


"
 
Share this answer
 
have you imported dll files regarding ajax in your bin folder. Have you called assembly in your design page correctly and also check balloonid properties.
 
Share this answer
 
Comments
vihangshah 27-Feb-13 4:53am    
YA i already import that thats why i able to add extender to the control my code is....
<asp:TextBox ID="TextBox1" runat="server" BorderColor="#FF0066"
BorderStyle="Ridge">hello
<asp:BalloonPopupExtender ID="TextBox1_BalloonPopupExtender" runat="server"
BalloonPopupControlID="panel1" CustomCssUrl=""
DisplayOnFocus="True" DisplayOnMouseOver="True" DynamicServicePath=""
Enabled="True" ExtenderControlID="" TargetControlID="TextBox1"
Position="BottomRight" BalloonStyle="Cloud" ScrollBars="None">

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900