macoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-services
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.
14 lines
399 B
14 lines
399 B
/** |
|
* @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; |
|
}); |
|
} |
|
});
|
|
|