mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
21 lines
515 B
JavaScript
21 lines
515 B
JavaScript
|
/**
|
||
|
* File: MemberTableField_popup.js
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Class: MemberTableFieldPopupForm
|
||
|
*/
|
||
|
MemberTableFieldPopupForm = Class.extend("ComplexTableFieldPopupForm");
|
||
|
MemberTableFieldPopupForm.prototype = {
|
||
|
initialize: function() {
|
||
|
this.ComplexTableFieldPopupForm.initialize();
|
||
|
|
||
|
Behaviour.register('MemberTableFieldPopupForm',{
|
||
|
"div.MemberTableField_Popup .Actions input.action": {
|
||
|
onclick: this.submitForm.bind(this)
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
MemberTableFieldPopupForm.applyTo('div.MemberTableField_Popup .Actions');
|