You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
417 B
13 lines
417 B
function bindFolderAutoComplete(selector) {
|
|
YUI().use("autocomplete", "autocomplete-highlighters", 'autocomplete-filters', function (Y) {
|
|
Y.one('body').addClass('yui3-skin-sam');
|
|
Y.one(selector).plug(Y.Plugin.AutoComplete, {
|
|
|
|
|
|
resultHighlighter: 'startsWith',
|
|
resultFilters: 'phraseMatch',
|
|
source: '/Directory/GetDirectories/?q={query}'
|
|
});
|
|
})
|
|
|
|
} |