I need to implement autocomplete select box inside jqueryUI dialog.
See it here: http://jsfiddle.net/zcgWa/
Currently dialog is overflowing the select box. (click the select box) I have found a solution by removing jqueryUI style overflow:hidden.
.ui-dialog {
overflow: hidden;
position: absolute;
top: 0;
left: 0;
padding: .2em;
outline: 0;
}
But the overflow is a native dialog style that comes by default, that is why I think it is not the perfect solution. I also have many other dialogs pop-ups accross the project and removing oveflow might cause some of them not to work properly.
Is there any other better solution?
Thanks.