I am currently working on an AngularJS typeahead directive in conjunction with the jQuery layout plugin. You can check out the app I'm developing by clicking here. The issue I'm facing is that when I enter an address into the input box, the autocomplete results are getting hidden behind the resizer. I have attempted to adjust the z-index properties of both the autocomplete list and the pane resizer, but so far nothing has resolved the problem. Can anyone suggest the best approach to resolve this?
.ui-layout-resizer-open {
z-index: 1;
}
.dropdown-menu {
z-index: 2;
}