I have done many pages with userforms and it usually works like a charm (so thanks for the great work!).
This time my client wants an more or less infinite scroll home page that includes the form (on top of having it as a separate page). So I integrated it like this in my Home.php:
function ShowForm(){
$get = DataObject::get_one('UserDefinedForm');
return new UserDefinedForm_Controller($get);
}
and like this in the template:
<% control ShowForm %>
$Form
<% end_control %>
If I go to the separate form page I don't get any errors. But on the integrated part I now get a "Uncaught TypeError: undefined is not a function " and it points to the
(function($) {
$(document).ready(function() {
$("#Form_Form").validate({ ...
There are two validate folders - one in the framework/thirdparty and one in the userform/thirdparty. I'd be thankful for hints what is going wrong here.
Thanks,
Sam