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
|
|
|
|
2008-08-13 01:53:08 +02:00
|
|
|
Behaviour.register('MemberTableFieldPopupForm',{
|
2008-08-11 00:45:42 +02:00
|
|
|
"div.MemberTableField_Popup .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
|
|
|
|
2008-08-11 00:45:42 +02:00
|
|
|
MemberTableFieldPopupForm.applyTo('div.MemberTableField_Popup .Actions');
|