Hi,
In the latest versions of the plugin, is not needed to edit the plugin’s code to display a text in the calculated fields, you simply should return the text as resulting of evaluate the equation.
Best regards.
Hi,
Thank you very much for the quick reply.
I’ve read quite a lot of the threads here, and you really give amazing support for the plugin.
I still struggle with my form – now that I can add text to the calculated fields, it is too long for the text field, and not all the text shows.
Is there a way to fix this?
My form is at the bottom of the page –
http://www.savey.co.il/%D7%9E%D7%A8%D7%9B%D7%96-%D7%94%D7%99%D7%93%D7%A2-%D7%94%D7%A4%D7%99%D7%A0%D7%A0%D7%A1%D7%99/%D7%9B%D7%9C%D7%99%D7%9D/%D7%90%D7%91%D7%93%D7%9F-%D7%9B%D7%95%D7%A9%D7%A8-%D7%A2%D7%91%D7%95%D7%93%D7%94-%D7%90%D7%91%D7%97%D7%95%D7%9F/
Thanks ahead,
Rani
Hi,
managed to get the desired result using the summary field.
Great great plugin.
Thank you!
Hi,
The summary field is a good solution, but you can use other alternatives.
For example, you can insert a “HTML Content” field in the form, and enter on it a “DIV” tag with an unique ID, for example:
<div id="myfield"></div>
and then, assign the text to the new “DIV” tag, from the equation associated to the calculated field:
(function(){
var text = 'It is the text to display in the DIV tag';
jQuery('#myfield').html( text );
})()
The equation in this case is very basic, it is only to explain how to select the field, and assign the text.
Best regards.