Implemented a jQuery based version of documents.getElementsBySelector

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@64339 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Hayden Smith 2008-10-16 02:09:46 +00:00
parent d66ee2f738
commit 365622c0c9
4 changed files with 9 additions and 5 deletions

View File

@ -121,6 +121,7 @@ class LeftAndMain extends Controller {
}
Requirements::javascript(THIRDPARTY_DIR . '/prototype.js');
Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.js');
Requirements::javascript(THIRDPARTY_DIR . '/behaviour.js');
Requirements::javascript(THIRDPARTY_DIR . '/prototype_improvements.js');
Requirements::javascript(THIRDPARTY_DIR . '/loader.js');

View File

@ -252,7 +252,7 @@ function ajaxActionsAtTop(formName, actionHolderName, tabName) {
var actions = document.getElementsBySelector('#' + formName + ' .Actions')[0];
var holder;
if((holder = $(actionHolderName)) && holder != actions && holder.className != 'ajaxActions') {
if((holder = $(actionHolderName)) && holder != actions) {
holder.parentNode.removeChild(holder);
}

View File

@ -129,9 +129,12 @@ CMSForm.prototype = {
tinyMCE.onLoad();
}
if(this.prepareForm) this.prepareForm();
Behaviour.apply(this);
// We assume that an evaluated response is generated by FormResponse
// which takes care of calling these method it
if (!evalResponse) {
if (this.prepareForm) this.prepareForm();
Behaviour.apply(this);
}
if(this.resetElements) this.resetElements();

View File

@ -2,7 +2,7 @@
Behaviour.register({
'#Form_EditForm' : {
initialise : function() {
this.openTab = null;
this.openTab = null;
this.prepareForm();
},