I have an update panel that has a set of text boxes that the user may complete with a check bosx that whe n cecked will disable the current textboxes and enable another set. These are all contained in an update panel and triggered by the checkbox. I dont
think that this is working quite right since it looks like there is a postback occuring. Secondly, I have a balloon popupthat explains to the user when they should use this option, which i want to trigger withthe same checkbox. The balloon displays mometnarily
- then it appears to post back and the balloon closes - too quickly to read.
Member
120 Points
574 Posts
Balloonpopup with update panel
Mar 05, 2014 11:37 PM|dieseldave|LINK
I have an update panel that has a set of text boxes that the user may complete with a check bosx that whe n cecked will disable the current textboxes and enable another set. These are all contained in an update panel and triggered by the checkbox. I dont think that this is working quite right since it looks like there is a postback occuring. Secondly, I have a balloon popupthat explains to the user when they should use this option, which i want to trigger withthe same checkbox. The balloon displays mometnarily - then it appears to post back and the balloon closes - too quickly to read.
code behind
Participant
1644 Points
792 Posts
Re: Balloonpopup with update panel
Mar 06, 2014 05:47 AM|rajesh93180|LINK
Why don't you use DisplayOnMouseOver attribute of BalloonPopupExtender?
Mark as answer if you find this post helpful.
All-Star
15648 Points
2151 Posts
Re: Balloonpopup with update panel
Mar 07, 2014 01:07 AM|Happy Chen - MSFT|LINK
As rajesh said, you can try setting 'DisplayOnMouseOver="ture"'.
i would suggest you check out the link for details:
Understanding ASP.NET AJAX UpdatePanel Triggers
http://www.asp.net/web-forms/tutorials/aspnet-ajax/understanding-asp-net-ajax-updatepanel-triggers
Hope it helps you.