malpica
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] update versionI have updated plugin, but I can’t see the new Advanced Equations Editor
Forum: Plugins
In reply to: [Calculated Fields Form] update versionThanks for your quick response. One more question. If I have my custom SERVER SIDE ECUATIONS should I save add-ons directory?
Forum: Plugins
In reply to: [Calculated Fields Form] required don’t foundThe issue is in second page. Sorry
Forum: Plugins
In reply to: [Calculated Fields Form] Populate form with data submitted by other formIt’s works fine!!!!
One more thing. If I want populate form(C) with form (B) values in the same page??Forum: Plugins
In reply to: [Calculated Fields Form] Populate form with data submitted by other formmy provisional site is https://www.test.mendivilyasociados.com/
I’m trying to make the radio buttons fields of form B appear on the thank-you page with the value I gave them from form A
Forum: Plugins
In reply to: [Calculated Fields Form] Autocomplete suggestions dropdownYes, I had seen it. Should I include it in an html field?
and to pass the value to the thank you page?
BEST regards
Forum: Plugins
In reply to: [Calculated Fields Form] jquery valForum: Plugins
In reply to: [Calculated Fields Form] i.explorer failedI’m testing fields, and I think that the issue is for using arrays in internet explorer 11. Can this be so?
Forum: Plugins
In reply to: [Calculated Fields Form] i.explorer failedI have updated plugin but problem still is in i explorer.
Example data inserted:
page 1: first: 18, second: enero, third: 1970, fourth: Soltero
page 2: first: No
page 3: first select: autonomo, second: 15, third: 125000The calculated fields that don’t work with internet explorer are:
fieldname43
fiedlname48
fieldname54With chrome, firefox and edge, forms work well.
Forum: Plugins
In reply to: [Calculated Fields Form] JavaScript ImplementationI have inserted this code into html field, but don’t display chart. Where is the wrong?
<script type=”text/javascript” src=”https://www.gstatic.com/charts/loader.js”></script>
<script type=”text/javascript”>
function your_function(){google.charts.load(‘current’, {‘packages’ : [‘corechart’]});
google.charts.setOnLoadCallback(drawchart);
function drawchart () {
var data = new google.visualization.DataTable();
var v1= jQuery(‘[id*=”fieldname1_”]’).val();
var v2= jQuery(‘[id*=”fieldname2_”]’).val();
var v3= jQuery(‘[id*=”fieldname3_”]’).val();data.addColumn (‘string’, ‘Topping’);
data.addColumn(‘number’, ‘Slices’);
data.addRows ([[‘Mushrooms’, ‘v1’],
[‘Onions’, ‘v2’],
[‘Olives’, ‘v3’],
[‘Zucchini’, 1]
]);var options= {‘title’ : ‘How much pizza’,
‘width’:400,
‘height’:300 };var chart= new google.visualization.PieChart(document.getElementById(‘chart_div’));
chart.draw(data, options);}
}
</script><div id=”chart_div” style=”width:400; height:300″></div>
Forum: Plugins
In reply to: [Calculated Fields Form] JavaScript ImplementationHow can I use fieldname1 or fieldname2 with this function.? I need use this fields to show a chart
thanks
Forum: Plugins
In reply to: [Calculated Fields Form] submit buttonThe third page is a summary with sort results and links to buy my products.
Forum: Plugins
In reply to: [Calculated Fields Form] popupmakerIf I deactivate popup maker plugin, calculated field forms plugin works good. If your plugin is active I can’t modify any javascript calculate of my plugin
Forum: Plugins
In reply to: [Calculated Fields Form] Using buttons to populate form fieldsYes, now this work fine.
Great support.
Best regards
Forum: Plugins
In reply to: [Calculated Fields Form] Using buttons to populate form fieldsI have modified my function and now the result is:
125+globalvar=
125[object HTMLInputElement]Thanks