Element outside the dialog

1

HowdoIdisplayanul/divthatisinsidethedialog?Lookinthelowerrightcornerofthedialog

<divid="dialog">
        <div>  <div>    <button id="status-candidato">Run last action</button>  <button id="select">Select an action</button>
      </div>
      <ul>
        <li>Open...</li>
        <li>Save</li>
        <li>Delete</li>        
      </ul></div>

    </div>


<script>
 $('#dialog').dialog({
            title:"Titulo",
            width:800,
            modal: true,
            resizable: false,
            position: "top"

...
</script>
    
asked by anonymous 06.08.2015 / 15:31

2 answers

0

I GOT IT !!

#dialog {  overflow: visible; }
.ui-dialog { overflow: visible; }

You have to force the dialog class to display

    
06.08.2015 / 15:59
0

I think you can fix this with z-index :

#dialog {
    display: block;
    z-index: 9999;
}
    
06.08.2015 / 15:35