fatih71
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] change back ground color checkboxThank you!
Forum: Plugins
In reply to: [Calculated Fields Form] fbuilderjquery.getJSON() and input field<script>
fbuilderjQuery(document).one(‘showHideDepEvent’, function(){
fbuilderjQuery.getJSON(‘https://opendata.rdw.nl/resource/m9d7-ebf2.json?kenteken=fbuilderjQuery(‘%5Bid*=”fieldname1_”%5D’).val()’, function(data){fbuilderjQuery(‘[id*=”fieldname3_”]’).val(data[0][‘merk’]);
fbuilderjQuery(‘[id*=”fieldname5_”]’).val(data[0][‘handelsbenaming’]);} );});
</script>i have replaced with the code you gave but it does not work. Maybe i did not understand. Thank you.
Forum: Plugins
In reply to: [Calculated Fields Form] cff registration form moduleThank you very much.
Forum: Plugins
In reply to: [Calculated Fields Form] how to get current post idThank you for your answer.
Is it possible to calculate the post_id like jQuery(‘#post_id’).val()
and replace post_id=”123″ with post_id=”<%fieldname#%>”Forum: Plugins
In reply to: [Calculated Fields Form] Lookup table.Hello,
When client is logged in and if his email is in the csv file then the calculation of de price changes.
How to compare login email with a csv file(with emails) so the calculated field returns another price.
Fatih
Forum: Plugins
In reply to: [Calculated Fields Form] filling form with JSON dataThank you very much!
Forum: Plugins
In reply to: [Calculated Fields Form] filling form with JSON dataThank you, so it would be like this:
fbuilderjQuery(document).one(‘showHideDepEvent’, function(){
fbuilderjQuery.getJSON( ‘https://api.manana.kr/exchange/rate/KRW/USD.json’, function(data){fbuilderjQuery(‘[id*=”fieldname1_”]’).val(data[fbuilderjQuery(‘[id*=”fieldname34_”]’).val()][‘rate’]);} );
});Forum: Plugins
In reply to: [Calculated Fields Form] filling form with JSON datafbuilderjQuery(document).one(‘showHideDepEvent’, function(){
fbuilderjQuery.getJSON( ‘https://api.manana.kr/exchange/rate/KRW/USD.json’, function(data){fbuilderjQuery(‘[id*=”fieldname1_”]’).val(data[0][‘rate’]);} );
});.val(data[0], how to change the 0 by fieldname input?
Forum: Plugins
In reply to: [Calculated Fields Form] calculated form fields: plus/ minus buttonThank you very much!
Thank you very much!!!, it does work.