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
400
runtime changing message of WebDialogWindow
posted

hello,

How can I change a message of a WebDialogWindow ?

Initially I set window state as hidden

            WebDialogWindow1.WindowState = Infragistics.Web.UI.LayoutControls.DialogWindowState.Hidden ;

and while showing dialog box I set window state as normal

            WebDialogWindow1.WindowState = Infragistics.Web.UI.LayoutControls.DialogWindowState.Normal ;

at the time of showing dialog box I wnat to change a message . how can I do that ?

 

Thanks,

Shital

 

Parents
No Data
Reply
  • 2265
    posted

    Shital,

    You can change the text on the server side using the following:

     WebDialogWindow1.Header.CaptionText = "some text"

    Andez

Children