2007-07-19 12:40:05 +02:00
|
|
|
MemberTableFieldPopupForm = Class.extend("ComplexTableFieldPopupForm");
|
|
|
|
MemberTableFieldPopupForm.prototype = {
|
|
|
|
initialize: function() {
|
|
|
|
this.ComplexTableFieldPopupForm.initialize();
|
2008-04-26 08:28:20 +02:00
|
|
|
|
2007-07-19 12:40:05 +02:00
|
|
|
Behaviour.register({
|
2008-03-12 10:23:10 +01:00
|
|
|
"form#MemberTableField_Popup_DetailForm .Actions input.action": {
|
2007-07-19 12:40:05 +02:00
|
|
|
onclick: this.submitForm.bind(this)
|
|
|
|
}
|
|
|
|
});
|
2007-09-15 22:11:40 +02:00
|
|
|
}
|
2007-07-19 12:40:05 +02:00
|
|
|
}
|
2007-09-15 22:11:40 +02:00
|
|
|
|
2007-07-19 12:40:05 +02:00
|
|
|
MemberTableFieldPopupForm.applyTo('form#MemberTableField_Popup_DetailForm');
|