|
Rank: Member Groups: Member
Joined: 10/10/2007 Posts: 10
|
Is it possible to fire the "javascript:eo_GetObject('Dialog1').show(true)" from codebehind from within a button_click method?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
It's possible but there is an easier way to do it. You can simply set the dialog's InitialState to Visible and that should display the dialog for you.
|
|
Rank: Member Groups: Member
Joined: 10/10/2007 Posts: 10
|
I'm trying to only display the dialog after the user clicks the button with the Dialog displaying the results.
|
|
Rank: Member Groups: Member
Joined: 10/10/2007 Posts: 10
|
Ok, that worked for me. I just set the IntialState to hidden and then in the code behind used "Dialog1.InitialState = EO.Web.DialogState.Visible;" to then show the dialog. thanks!!
|
|