Lines Matching refs:checkbox
2316 var ITEM_STR_ = '<input type="checkbox" value="{{value}}" class="dac-form-checkbox" id="{{id}}">' +
2317 '<label for="{{id}}" class="dac-form-checkbox-button"></label>' +
2387 * @param {Object} item - A single filter option (checkbox container).
2401 * @param {Object} item - A single filter option (checkbox container).
2418 this.tabViewEl_.on('change.dac-filter', ':checkbox', this.toggleCheckboxHandler_.bind(this));
2435 var checkbox = $(ITEM_STR_.replace(/\{\{name\}\}/g, opts.filterName)
2440 checkbox[0].checked = true;
2444 item.append(checkbox);
2474 this.items_.find(':checked').each(function(i, checkbox) {
2479 var expression = $(checkbox).val();
2543 var checkbox = chip.data('item.dac-filter').find(':first-child')[0];
2544 checkbox.checked = false;
2545 this.changeStateForCheckbox(checkbox);
2559 * @param checkbox
2561 Filter.prototype.changeStateForCheckbox = function(checkbox) {
2562 var item = $(checkbox).parent();
2564 if (checkbox.checked) {
2567 'Filters', 'Check', $(checkbox).val());
2572 'Filters', 'Uncheck', $(checkbox).val());