/*
This file is part of Ext JS 3.4
Copyright (c) 2011-2013 Sencha Inc
Contact: http://www.sencha.com/contact
GNU General Public License Usage
This file may be used under the terms of the GNU General Public License version 3.0 as
published by the Free Software Foundation and appearing in the file LICENSE included in the
packaging of this file.
Please review the following information to ensure the GNU General Public License version 3.0
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
If you are unsure which license is appropriate for your use, please contact the sales department
at http://www.sencha.com/contact.
Build date: 2013-04-03 15:07:25
*/
Ext.ns('Ext.ux.MultiCombo');
/**
* Checkable
* @plugin
*/
Ext.ux.MultiCombo.Checkable = function(cfg) {
Ext.apply(this, cfg);
};
Ext.ux.MultiCombo.Checkable.prototype = {
/**
* @cfg {String} checkSelector DomQuery config for locating checkbox
*/
checkSelector: 'input[type=checkbox]',
/**
* @cfg {String} itemSelector The itemSelector used with Combo's internal DataView [x-combo-list]
*/
itemSelector : 'x-combo-list',
/**
* @cfg {String} cls
*/
cls: 'combo-checkable',
/**
* @cfg {String} selectAllText The "SELECT ALL" phrase [Select All]
*/
selectAllText: 'Select All',
/**
* @cfg {String} clearAllText the text to display for "clear all" link
*/
clearAllText : 'clear all',
/**
* @cfg {String} separatorHtml arbitrary html rendered after Checkable controls. Can be used to add an
* html separator markup.
*/
separatorHtml : '',
// private {Boolean} checked
checked : null,
init : function(combo) {
this.combo = combo;
var checkable = this;
var id = Ext.id();
var cls = combo.itemSelector || this.itemSelector;
if (!combo.tpl) {
combo.tpl =['','