Search and Top Navigation
#10634 closed bug (notabug)
Opened October 01, 2014 07:04AM UTC
Closed October 01, 2014 12:01PM UTC
Not able to Block my main screen on Dialog Open
Reported by: | Deepika15 | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | none |
Component: | ui.dialog | Version: | 1.10.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I am creating a dialog using below code :
$("#div1").dialog({
autoOpen: false, closeOnEscape: true,
draggable: true, position: 'center', resizable: false, width: 700, height: 450,zIndex: 1000,
dialogClass: 'ui-dialog-grey',fluid: true,
show: "fadein",
hide: "fadeout",
modal: true
}).css("background", "#E6E6E6");
Script Used : jquery-1.9.1.min.js and jquery-ui-1.10.3.min.js
But when Dialog opens up ,Main screen is still clickable and visible as normal .
Also i need a X button on top right corner ,but currently its coming as CLOSE button on top left corner
Attachments (0)
Change History (1)
Changed October 01, 2014 12:01PM UTC by comment:1
resolution: | → notabug |
---|---|
status: | new → closed |
Sounds like you're not including the CSS. You're also using options that don't exist (
zIndex
,fluid
) and invalid values (fadein
vs.fadeIn
). Use the forums, IRC, or Stack Overflow for help.