jquery - jQueryUI dialog VS twitter bootstrap overlay, putting one above the other -


on web page use jqueryui modal dialog show loading message when link clicked. in pages use twitter bootstrap's modal overlays.

the tb overlays appear on loading dialog. want loading dialog on top of every div. tried change z-index of dialog overlay, doesn't help.

i made simple jsfiddle example of problem:

http://jsfiddle.net/x76uh/1/

in there can click link shows tb overlay , underneath appears loading dialog. want have dialog on top of tb overlay.

is there way accomplish this?

the easiest way give ui-dialog higher z-index:

.ui-dialog {    z-index: 1060; } 

updated jsfiddle


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -