linuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacos
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.
15 lines
399 B
15 lines
399 B
9 years ago
|
/**
|
||
|
* @private
|
||
|
* Private utility class for managing all {@link Ext.form.field.Checkbox} fields grouped by name.
|
||
|
*/
|
||
|
Ext.define('Ext.form.CheckboxManager', {
|
||
|
extend: 'Ext.util.MixedCollection',
|
||
|
singleton: true,
|
||
|
|
||
|
getByName: function(name, formId) {
|
||
|
return this.filterBy(function(item) {
|
||
|
return item.name === name && item.getFormId() === formId;
|
||
|
});
|
||
|
}
|
||
|
});
|