#18578550 #18578544 폼 전송이 안되던 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7113 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-01-05 04:12:47 +00:00
parent 8ddebe270d
commit c1370ed26f

View file

@ -76,7 +76,7 @@ var Validator = xe.createApp('Validator', {
var hasLegacyFn = $.isFunction(legacyFn);
var bResult = hasLegacyFn?legacyFn.apply(this):self.run(this);
return false;
return bResult;
});
},
API_VALIDATE : function(sender, params) {
@ -225,7 +225,9 @@ var EditorStub = xe.createPlugin('editor_stub', {
var seq = form.getAttribute('editor_sequence');
if (seq) {
form.content.value = editorGetContentTextarea_xe(seq) || '';
try {
editorRelKeys[seq].content.value = editorGetContentTextarea_xe(seq) || '';
} catch(e) { }
}
}
});