Rank: Newbie Groups: Member
Joined: 8/26/2015 Posts: 1
|
Boa noite pessoal.
baixei o pacote de objeto de vocês para fazer um teste.
quando fui utilizar o objeto msgbox, n ão aparece o button (OK).
fui fazendo testes para ver o motivo, e descobri que o mesmo esta com um bug.
MsgBox.InitialState = DialogState.Hidden, o button fica invisivel, quando mudo o estado para MsgBox.InitialState = DialogState.Visible, o mesmo aparece so que da um amensage de erro, falando o seguinte.
Call server side show method or client side msgBox method to display the message box.
so que o button (OK) aparece.
como resolvo isto???
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
You should do exactly what the message tells you: You need to call the server side or client side Show method to display the message box (instead of setting MsgBox.InitalState). You can check the source code of the demo project (inside Samples\CS\Web\EOWebDemo_CS\Demos\MsgBox directory) to see how to use MsgBox.Show method.
Thanks!
|