About the Data Extraction Problem
-
Hello;
I pulled data using the API with a php file. I also have the data I capture calculated as JSON in the calculated fieldname field.
But the problem is that while you can print the result; The value I calculated does not appear in the “calculated fieldname” field.How can I solve this problem?
criterion92 output appears. but it does not appear in the calculated fieldname field that I defined.
I would be very happy if you could suggest a solution.(function () { var criterion92 = ''; jQuery.ajax({ url: 'https://www.xxx.com/xx.php', dataType: 'json', success: function (response) { var criterion92a = response.data; criterion92 = PREC(criterion92a * fieldname44 * 7.216,2,true); jQuery('#calculation-criterion92').html(criterion92); }, error: function (error) { console.error('Error fetching data:', error); } }); })();
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘About the Data Extraction Problem’ is closed to new replies.