disabling click of controls
Hi I am using jQuery-ui-1.8.7-custom.js dialog box. Now i want when the dialog box will open then the user will not be able to click on any control of page.
Pl开发者_如何学运维ease give me solution.
Thanks & Regards,
Munish Gautam
Use modal config option when you are displaying the dialog. Refer to http://jqueryui.com/demos/dialog/#option-modal
Pass in modal: true
:
dialog({ modal: true })
精彩评论