I have a problem displaying the autosuggest box inside a jQuery dialog. The auto suggest list is displayed under the dialog no matter what. I have tried setting up the z-ind
This is what you can do:
$("#txtTagAdd").autoSuggest(data.items, {
asHtmlID:"tagg",
selectedItemProp: "name",
searchObjProps: "name",
selectionLimit:4,
limitText: "Only 4 tags unique tags allowed for each suggestion",
resultsComplete: function(){
var h = $('ul.as-list').innerHeight() + 20;
$('div.as-results').css({"height": h + "px"});
}
});