I have a problem with popups, showFormInDialog run true to how I and the rear window is enabled. Only be disabled if I click on any part of the window, but as the fields and buttons are enabled. Someone can give me some help on this topic?
Thanks
can you explain yourself a little bit more?
showformindialog run true mode. assumes that the window is left behind should not be enabled. But my solution is behind the window is enabled. I am running my solution in WebClient
application.showFormInDialog(form,,[y],[width],[height],[dialogTitle],[resizable],[showTextToolbar],[windowName],[modal])
To leave the form behind the dialog disabled you need to set the modal property to true, are you doing this? is that what you mean by saying it runs in true mode?
run diagnostics in true mode on showFormInDialog, paste results
as you can see in the code attached, I am using true. but when the window appears, the fields of the rear window, are enabled, I remind you that the solution runs in WebClient
thanks
{ elements.slote.enabled = true
globals.vlblmensaje = “Producto invalido”
application.showFormInDialog( forms.msg_aviso,200,200,null,null,‘Aviso’,null,null,‘msg_aviso’,true)
elements.sprdactor.requestFocus()
}
so in the browser you et the modal dialog popup over your current browser/tab
But you can still click in the background and change values?
Which browser do you use?
Do you have this also in other browsers?
if I change the value of the field far behind. this tested in IE6 / 7 and Mozilla.
a rarity, if you click anywhere on the rear window, no buttons or fields, the rear window is blocked. but the first click, if there is a field or button, they are activated and you can modify the data.
Of course this does not allow me to trust the tool. We spent most of our solution with this method.
I need urgent help, but I would have to change everything in the solution.
Thanks to anyone who can give me any answer.
Can you post a sample app that reproduces this problem?
attach it in an email to your email address. I did not know and attach it here.
Thanks
Always trust the tool. If in you can’t trust tool, how can you ever popup rear window? I am here for urgent help but only in professional manner. Please advise on rarity, I believe this might be in moderation and the result of the diagnostics. Thanks much!
Under The Bridge:
Always trust the tool. If in you can’t trust tool, how can you ever popup rear window? I am here for urgent help but only in professional manner. Please advise on rarity, I believe this might be in moderation and the result of the diagnostics. Thanks much!
Dear 'Under The Bridge"
I have no idea what you are talking about. Please clarify or we’ll have to delete your posts, stay to the point this is not a philosophy forum.
acpugliese:
attach it in an email to your email address. I did not know and attach it here.
Thanks
The attachement you sent me appears to be related to a different thread.
I’m sorry, I confused the issues, the sender is from another post “refresh Webclient form” which is the most important to us. Now I will put together a solution of the problem instance to send this post.
Jan Aleman:
Under The Bridge:
Always trust the tool. If in you can’t trust tool, how can you ever popup rear window? I am here for urgent help but only in professional manner. Please advise on rarity, I believe this might be in moderation and the result of the diagnostics. Thanks much!Dear 'Under The Bridge"
I have no idea what you are talking about. Please clarify or we’ll have to delete your posts, stay to the point this is not a philosophy forum.
Sorry english is not good. What I say is rare case condition might give thought to problem solution. More instigation to this give help. Question this also, is this working in smartclient?
I must admit ive lost the line of this topic a few posts ago. I see ur english is not good, u speak spanish?
si hablan español diganlo en español, en cualquier caso lo traducimos pero de nada sirve que lo pongan en inlges y no tenga sentido. Es imposible ayudarlos asi.
Actually I just looked at the sample solution and concluded the following:
If you request focus after:
application.showFormInDialog(forms.msg_error_carga1,100,100,null,null,null,null,null,‘msg_error_carga1’,true)
You can potentially get into problems. Don’t do that. Let the showform in dialog be your last line. If you need code later attach it to your onhide of the dialog.
There appears to be a problem with FF though that R&D is now looking into. With FF you can sometimes still type in the field in the bg. You can work around this by disabling it before popping:
elements.scampo.enabled = false
application.showFormInDialog(forms.msg_error_carga1,100,100,null,null,null,null,null,‘msg_error_carga1’,true)