Hi,
I want to do some calculation on my form, but I only found a basic calculation at FAQ section.
Can anyone help what formula code for my situation below:
TextField_A (user enter the value)
TextField_B (user enter the value)
TextField_C (user enter the value)
TextField_D (user enter the value)
--------------------------------------------
Total_E = (TextField_C * 0.0001) + TextField_A (auto calculate and read only)
Total_F = (TextField_D * 0.0001) + TextField_B (auto calculate and read only)
I want to do some calculation on my form, but I only found a basic calculation at FAQ section.
Can anyone help what formula code for my situation below:
TextField_A (user enter the value)
TextField_B (user enter the value)
TextField_C (user enter the value)
TextField_D (user enter the value)
--------------------------------------------
Total_E = (TextField_C * 0.0001) + TextField_A (auto calculate and read only)
Total_F = (TextField_D * 0.0001) + TextField_B (auto calculate and read only)
Use JQuery.
jQuery("input[name='Total_E']").val( parseFloat( jQuery("input[name='TextField_A']").val() ) * 0.0001 + parseFloat(jQuery("input[name='TextField_A']").val()));That should get you started.
Hi.How to use for calculating the elements of the radios. Could you tell me please, very need.

Google "semantic UI get value of selected radio"
This topic is locked and no more replies can be posted.