2007-07-19 10:40:05 +00:00
|
|
|
MemberTableFieldPopupForm = Class.extend("ComplexTableFieldPopupForm");
|
|
|
|
MemberTableFieldPopupForm.prototype = {
|
|
|
|
initialize: function() {
|
|
|
|
this.ComplexTableFieldPopupForm.initialize();
|
2008-04-26 06:28:20 +00:00
|
|
|
|
2008-08-12 23:53:08 +00:00
|
|
|
Behaviour.register('MemberTableFieldPopupForm',{
|
2008-08-10 22:45:42 +00:00
|
|
|
"div.MemberTableField_Popup .Actions input.action": {
|
2007-07-19 10:40:05 +00:00
|
|
|
onclick: this.submitForm.bind(this)
|
|
|
|
}
|
|
|
|
});
|
2007-09-15 20:11:40 +00:00
|
|
|
}
|
2007-07-19 10:40:05 +00:00
|
|
|
}
|
2007-09-15 20:11:40 +00:00
|
|
|
|
2008-08-10 22:45:42 +00:00
|
|
|
MemberTableFieldPopupForm.applyTo('div.MemberTableField_Popup .Actions');
|