Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
264
Set header caption text...
posted

I am using the dialog window to show success or failure status'.

I have the following code in BLOCKED SCRIPT

var dialog = $find("ctl00_cphContent_wdwAlert");
var header = dialog.get_header();

I can get the reference to the dialog window just fine, but it seem that the only way to get the header is to set it's state to normal by doing the following:

var state = dialog.set_windowState($IG.DialogWindowState.Normal);

Am I missing something?

Thanks... 

 

 

Parents
No Data
Reply
  • 24497
    posted

    Hi,

    If at the time of you call the WebDialogWindow was never painted (like hidden on start), then get_header() returns null, because its html elements are not configured.

    I think that if you need just to set its caption, then it can be done. You may try to use internal member variable _header instead of get_header function (though no support in case of misbehavior).

Children