From 163344243b0e00a2ffccddd171e8d0a4163943a8 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sun, 29 Apr 2012 20:28:50 +0200 Subject: [PATCH] jquery.combobox: Added 'showButton' option --- apps/contacts/js/jquery.combobox.js | 63 +++++++++++++++-------------- 1 file changed, 33 insertions(+), 30 deletions(-) diff --git a/apps/contacts/js/jquery.combobox.js b/apps/contacts/js/jquery.combobox.js index 25f0f094296..d9d8ccc00f7 100644 --- a/apps/contacts/js/jquery.combobox.js +++ b/apps/contacts/js/jquery.combobox.js @@ -4,6 +4,12 @@ (function( $ ) { $.widget('ui.combobox', { + options: { + id: null, + name: null, + showButton: false, + editable: true + }, _create: function() { //console.log('_create: ' + this.options['id']); var self = this, @@ -71,32 +77,33 @@ .append( "" + item.label + "" ) .appendTo( ul ); }; - - /*this.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(); - });*/ - this.options['editable'] = true; $.each(this.options, function(key, value) { self._setOption(key, value); }); + + if(this.options['showButton']) { + this.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(); @@ -135,18 +142,14 @@ }); break; case 'editable': - this.options['editable'] = value; + 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 ); - }, - options: { - id: null, - name: null, - editable: true - }, + } }); })( jQuery ); -- 2.39.5