max width for find element autocomplete menu

This commit is contained in:
rolux 2011-11-02 18:22:49 +00:00
parent 7e779aaa7c
commit aa36bc339b
2 changed files with 4 additions and 2 deletions

View file

@ -60,6 +60,7 @@ pandora.ui.findElement = function() {
autocomplete: autocompleteFunction(), autocomplete: autocompleteFunction(),
autocompleteSelect: true, autocompleteSelect: true,
autocompleteSelectHighlight: true, autocompleteSelectHighlight: true,
autocompleteSelectMaxWidth: 256,
autocompleteSelectSubmit: true, autocompleteSelectSubmit: true,
clear: true, clear: true,
id: 'input', id: 'input',

View file

@ -8,8 +8,9 @@ pandora.ui.logsDialog = function() {
$findSelect = Ox.Select({ $findSelect = Ox.Select({
items: [ items: [
{id: 'all', title: 'Find: All', checked: true}, {id: 'all', title: 'Find: All', checked: true},
{id: 'url', title: 'Find: Url'}, {id: 'user', title: 'Find: User'},
{id: 'user', title: 'Find: User'} {id: 'url', title: 'Find: URL'},
{id: 'text', title: 'Find: Text'}
], ],
overlap: 'right', overlap: 'right',
type: 'image' type: 'image'