Hello John,
From your post, my understanding on this issue is: you wonder how to make
the popup controls invisible before the whole page load. If I'm off base,
please feel free to let me know.
As you see, the popup controls are visible before the whole page is loaded.
It is because PopupControlBehavior.js registers the page load event and
calls the hidePopup method in its event handler:
// Called automatically when a page load/postback happens
_close : function(result) {
¡* ¡* ¡*
// Hide the popup
this.hidePopup();
}
Therefore, the popup controls will be hidden only when the whole page is
loaded.
The method this.hidePopup calls "this._popupBehavior.hide();" in
PopupBehavior.js, which internally calls $common.setVisible(element,
false); The method setVisible is in Common.js. When the second parameter
(value) is false, it calls element.style.display = 'none'; and
element.style.visibility = 'hidden' to hide the control.
To resolve your problem, we can add the style ""display:none;
visibility:hidden" to the popup control so that the controls are invisible
before page load.
<asp:TextBox runat="server" ID="popupTextBox" style="display:none;
visibility:hidden"></asp:TextBox>
Please have a try and let me know the result. If you have any other
concerns or need anything else, feel free to let me know.
Sincerely,
Jialiang Ge (, remove 'online.')
Microsoft Online Community Support
==================================================
For MSDN subscribers whose posts are left unanswered, please check this
document:
http://blogs.msdn.com/msdnts/pages/postingAlias.aspx
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications. If you are using Outlook Express/Windows Mail, please make sure
you clear the check box "Tools/Options/Read: Get 300 headers at a time" to
see your reply promptly.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.