My application has one base Dialog that opens from the OTB Application.
Then I have 4 Dialogs that opens from button clicks in the base Dialog.
I am trying to decide if I need to use setBlockOnOpen, but I am not 100% what it does exactly.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
setBlockOnOpen(true)is supposed to stop processing after theopen()method and wait until the Dialog is closed to continue processing.setBlockOnOpen(false)allows your code to continue processing after theopen()method.