mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
0341a8685e
http://svn.silverstripe.com/open/modules/cms/branches/govtsecurity ........ r52797 | sminnee | 2008-04-15 22:22:33 +1200 (Tue, 15 Apr 2008) | 1 line Fixed interaction of MemberTableField and member validation ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@53456 467b73ca-7a2a-4603-9d3b-597d59a354a9
14 lines
414 B
JavaScript
Executable File
14 lines
414 B
JavaScript
Executable File
MemberTableFieldPopupForm = Class.extend("ComplexTableFieldPopupForm");
|
|
MemberTableFieldPopupForm.prototype = {
|
|
initialize: function() {
|
|
this.ComplexTableFieldPopupForm.initialize();
|
|
|
|
Behaviour.register({
|
|
"form#MemberTableField_Popup_DetailForm .Actions input.action": {
|
|
onclick: this.submitForm.bind(this)
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
MemberTableFieldPopupForm.applyTo('form#MemberTableField_Popup_DetailForm'); |