5099 Posts in 1519 Topics by 1116 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1949 Views |
-
Disabling prototype for page comments

11 February 2010 at 4:14pm Last edited: 11 February 2010 4:15pm
Hi,
just in case this might help anyone. I'm building a site that uses the Mootools framework (in the frontend). It all works well, but when I allow comments on a page Silverstripe adds javascript validation with the Prototype JS framework. This creates a conflict with Mootools. You may run into similar problems with other frameworks such as jQuery.
To get rid of Prototype you need to disable both AJAX commenting (in _config.php):
PageCommentInterface::set_use_ajax_commenting(false);
and remove the form validation (in e.g. Page.php):
class Page_Controller extends ContentController {
public function init() {
parent::init();
Validator::set_javascript_validation_handler('none');
}Cheers!
Anatol -
Re: Disabling prototype for page comments

24 February 2011 at 6:45am
Thanks for taking the time to post this! I was running into the same issues (predictably so) with the jQuery library.
Andy
| 1949 Views | ||
|
Page:
1
|
Go to Top |

