Blame view
sources/apps/contacts/js/jquery.combobox.js
5.18 KB
|
923852aa1
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
/**
* Inspired by http://jqueryui.com/demos/autocomplete/#combobox
*/
(function( $ ) {
$.widget('oc.combobox', {
options: {
id: null,
showButton: false,
editable: true,
singleclick: false,
},
_create: function() {
var self = this,
select = this.element.hide(),
selected = select.children(':selected'),
value = selected.val() ? selected.text() : '';
var name = this.element.attr('name');
//this.element.attr('name', 'old_' + name)
var input = this.input = $('<input type="text" />')
.insertAfter( select )
.val( value )
//.attr('name', name)
.autocomplete({
delay: 0,
minLength: 0,
source: function( request, response ) {
var matcher = new RegExp( $.ui.autocomplete.escapeRegex(request.term), "i" );
response( select.children('option').map(function() {
var text = $( this ).text();
if ( this.value && ( !request.term || matcher.test(text) ) )
return {
label: text.replace(
new RegExp(
'(?![^&;]+;)(?!<[^<>]*)(' +
$.ui.autocomplete.escapeRegex(request.term) +
')(?![^<>]*>)(?![^&;]+;)', 'gi'
), '<strong>$1</strong>'),
value: text,
option: this
};
}) );
},
select: function( event, ui ) {
self.input.val($(ui.item.option).text());
self.input.trigger('change');
ui.item.option.selected = true;
self._trigger('selected', event, {
item: ui.item.option
});
select.children('option').each(function() {
if ($(this).text().toLowerCase() === $(ui.item.option).text().toLowerCase()) {
$(this).attr('selected', 'selected');
} else {
$(this).removeAttr('selected');
}
});
select.trigger('change');
},
change: function( event, ui ) {
if(!ui.item) {
var matcher = new RegExp( '^' + $.ui.autocomplete.escapeRegex($(this).val()) + '$', 'i'),
valid = false;
self.input.val($(this).val());
//self.input.trigger('change');
select.children('option').each(function() {
if ($(this).text().match(matcher)) {
this.selected = valid = true;
$(this).attr('selected', 'selected');
select.trigger('change');
//return false;
} else {
$(this).removeAttr('selected');
}
});
if ( !self.options['editable'] && !valid ) {
// remove invalid value, as it didn't match anything
$( this ).val( "" );
select.val( "" );
input.data('autocomplete').term = '';
return false;
} else if(!valid) {
select.append('<option selected="selected">' + $(this).val() + '</option>');
select.trigger('change');
}
}
}
})
.addClass('ui-widget ui-widget-content ui-corner-left');
input.data('uiAutocomplete')._renderItem = function( ul, item ) {
return $('<li></li>')
.data('item.autocomplete', item )
.append('<a>' + item.label + '</a>')
.appendTo( ul );
};
$.each(this.options, function(key, value) {
self._setOption(key, value);
});
var clickHandler = function(e) {
var w = self.input.autocomplete('widget');
if(w.is(':visible')) {
self.input.autocomplete('close');
} else {
input.autocomplete('search', '');
}
}
if(this.options['singleclick'] === true) {
input.click(clickHandler);
} else {
input.dblclick(clickHandler);
}
if(this.options['showButton']) {
this.button = $('<button type="button"> </button>')
.attr('tabIndex', -1 )
.attr('title', 'Show All Items')
.insertAfter( input )
.addClass('svg')
.addClass('action')
.addClass('combo-button')
.click(function() {
// close if already visible
if ( input.autocomplete('widget').is(':visible') ) {
input.autocomplete('close');
return;
}
// work around a bug (likely same cause as #5265)
$( this ).blur();
// pass empty string as value to search for, displaying all results
input.autocomplete('search', '');
input.focus();
});
}
},
destroy: function() {
this.input.remove();
//this.button.remove();
this.element.show();
$.Widget.prototype.destroy.call( this );
},
value: function(val) {
if(val != undefined) {
this.input.val(val);
} else {
return this.input.val();
}
},
_setOption: function( key, value ) {
switch( key ) {
case 'id':
this.options['id'] = value;
this.input.attr('id', value);
break;
case 'attributes':
var input = this.input;
$.each(this.options['attributes'], function(key, value) {
input.attr(key, value);
});
break;
case 'classes':
var input = this.input;
$.each(this.options['classes'], function(key, value) {
input.addClass(value);
});
break;
case 'editable':
case 'showButton':
this.options[key] = value;
break;
}
// In jQuery UI 1.8, you have to manually invoke the _setOption method from the base widget
$.Widget.prototype._setOption.apply( this, arguments );
// In jQuery UI 1.9 and above, you use the _super method instead
//this._super( "_setOption", key, value );
}
});
})( jQuery );
|