Is it the case that unlicensed umbraco forms will do nothing on submit?
(unlike contour that had trial mode restrictions?)
I've set up a simple form with send email workflow and the form does submit and I get my "thankyou message" but nothing added to the entries logging, or any sign of an email to the recipient...
Is this the expected functionality when unlicensed?
This is not the expected functionality when unlicensed. When you installed Umbraco Forms you will get 14 days trial period where you can see the data the user submit into your form.
After this you should see some kind of trial mode restrictions, canĀ“t remember the exact words.
If you have a license, and you still see the trial mode restrictions, feel free to email me on dennis (at) umbraco dot com, then we will find a solution.
Think I found my solution... one was getting this to work with CDF.. and I'd already set the jqueryui/validation as required elsewhere.. so had to change the renderform to just mode="form"
Also had to then do the renderFormScripts, but can't see anyway to do this with cdf.. so rather than include on every single page I had to update for just templates where forms were rendered.
Umbraco Forms.. unlicensed behaviour?
Is it the case that unlicensed umbraco forms will do nothing on submit?
(unlike contour that had trial mode restrictions?)
I've set up a simple form with send email workflow and the form does submit and I get my "thankyou message" but nothing added to the entries logging, or any sign of an email to the recipient...
Is this the expected functionality when unlicensed?
Hi Mike,
This is not the expected functionality when unlicensed. When you installed Umbraco Forms you will get 14 days trial period where you can see the data the user submit into your form.
After this you should see some kind of trial mode restrictions, canĀ“t remember the exact words.
If you have a license, and you still see the trial mode restrictions, feel free to email me on dennis (at) umbraco dot com, then we will find a solution.
/Dennis
Think I found my solution... one was getting this to work with CDF.. and I'd already set the jqueryui/validation as required elsewhere.. so had to change the renderform to just mode="form" Also had to then do the renderFormScripts, but can't see anyway to do this with cdf.. so rather than include on every single page I had to update for just templates where forms were rendered.
then final one.. is an oversight I think in \Views\Partials\Forms\Script.cshtml for forms 4.1.5
basically..
I was seeing this result in js console error, "Uncaught SyntaxError: Unexpected end of input"
as was getting
note the confused value="..." and then " inside the value
changing in the script to single quotes, as per the two input lines preceeding it in the script seems to resolve.
All seems to be working as expected now. - at least the simple implementation thus far.
ps this was forms 4.1.5
is working on a reply...