klingbeil
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorYou are amazing, thank you very much, excellent support. I gave your plugin 5 stars.
Forum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorExample: When we select criterion (B) in Fieldname38..
Is it possible to hide the Fieldname30 cell at the bottom?
ThanksForum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorForum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorCould you please write the corrected version of the exams?
Forum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorHello,
I leave the live version of the calculation form. There are six links.
Although we specify “id=”calculation-yearlykizinucrethakki”, it does not calculate. Actually, everything should calculate correctly, when A and B value criteria are removed, the calculation works.What could be the problem here? Actually everything was going well, thanks to you I am learning to use the plugin well..
Thank you very much for supporting us for such a plugin.Y?ll?k ücretli ?zin Hakk? :
<td style="text-align: left;"><b>Y?ll?k ücretli ?zin Hakk? :</b></td><td style="text-align: right;"><b><span id="calculation-yillikizinucrethakki" style="color:#ff6504;"></span></b></td>
- This reply was modified 1 year, 7 months ago by klingbeil.
Forum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorHello, the equation at the bottom of the form is actually correct, but it does not write the result.
This equation does not work while functions work in all our other calculations.Actually, when I remove the criteria of the equation, it works fine as one. What could it be?
Forum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorHello,
What could be wrong with this code? Actually it works without Criterion. However, if the criterion is A, we calculate it in the lower part, and if it is B, we calculate it as a function under B.
But it doesn’t print the result.
Thanks.(function() { var yillikizinucrethakki = 0; if (fieldname36 == 'A') { yillikizinucrethakki = Math.abs(fieldname31); if (yillikizinucrethakki <= 359 && fieldname28 <= 18 && fieldname28 >= 50) { yillikizinucrethakki = 20; } else if (yillikizinucrethakki <= 359) { yillikizinucrethakki = 0; } else if (yillikizinucrethakki >= 360 && yillikizinucrethakki <= 1799) { yillikizinucrethakki = 14; } else if (yillikizinucrethakki >= 1800 && yillikizinucrethakki <= 5399) { yillikizinucrethakki = 20; } else if (yillikizinucrethakki >= 5400 && yillikizinucrethakki <= 99999) { yillikizinucrethakki = 26; } if (fieldname28 <= 18 && yillikizinucrethakki !== 20) { yillikizinucrethakki = 20; } if (fieldname28 >= 50 && yillikizinucrethakki !== 20) { yillikizinucrethakki = 20; } } else if (fieldname36 == 'B') { yillikizinucrethakki = Math.abs(fieldname31); if (yillikizinucrethakki <= 359) { yillikizinucrethakki = 0; } else if (yillikizinucrethakki >= 360 && yillikizinucrethakki <= 3599) { yillikizinucrethakki = 20; } else if (yillikizinucrethakki >= 3600 && yillikizinucrethakki <= 99999) { yillikizinucrethakki = 30; } } jQuery('#calculation-yillikizinucrethakki').html(yillikizinucrethakki + ' Gün'); return yillikizinucrethakki; })();
Forum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorHello
1) The date field is displayed to the user with the current date.
Can we replace this with a custom date?2) Where do we mark the required field that the user must fill?
3) Our last question is, is there a method to make the date field like this?
Thanks
Forum: Plugins
In reply to: [Calculated Fields Form] Add an optional cellHello, thank you very much, I got the job done. It comes one after the other on mobile, is there any chance of them coming together?
thanksForum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorI think I asked wrong. When I create a date cell by the users, an English calendar appears, how do we do it in Turkish?
Forum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorHow should the necessary correction be here?
Also, what should I do to make the calendar in Turkish? I have no further questions for you, I’ve been very uncomfortable. Thanks in advance.
fieldname20 = Date entered by the user.
(function(){ var o = WEEKDAYNAME(fieldname20,'dd/mm/yyyy'); yashesaplama2 = o['days']+' Gün'; jQuery('#calculation-yashesaplama2').html(yashesaplama2); return yashesaplama2; })()
Forum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorHow do we calculate the day of the entered date?
For example :07/11/2010 “SUNDAY” Day
ThanksForum: Plugins
In reply to: [Calculated Fields Form] Date CalculatorThe date calendar “dd/mm/yyyy” sounds in English.
Can we do this in Turkish? Can we at least remove the “dd/mm/yyyy” part above the date cell if it doesn’t come automatically above the cell?
thanksForum: Plugins
In reply to: [Calculated Fields Form] Dropdown Calculator(function(){ var kdvoran; if (fieldname14 == 'B') { kdvoran = PREC(fieldname16 + fieldname4, 2, true); } else { kdvoran = PREC(fieldname16 - fieldname4, 2, true); } jQuery('#calculation-kdvoran').html(kdvoran+' TL'); return kdvoran; })()
finally solved, thanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Dropdown CalculatorThanks a lot
My last question..(function(){ var kdvoran= PREC(fieldname16-fieldname4, 2, true); jQuery('#calculation-kdvoran').html(kdvoran+' TL'); return kdvoran; })()
In the code, a top option is in the dropdown menu (if the fieldname14 criterion is value B;
(function(){ var kdvoran= PREC(fieldname16+fieldname4, 2, true); jQuery('#calculation-kdvoran').html(kdvoran+' TL'); return kdvoran; })()
I want it to sum up taking into account the criteria.
I did this but it didn’t work.
(function() { var fieldname14_value = jQuery('#fieldname14').val(); var fieldname16_value = parseFloat(jQuery('#fieldname16').val()); var fieldname4_value = parseFloat(jQuery('#fieldname4').val()); var kdvoran; if (fieldname14_value === 'kriter B') { kdvoran = PREC(fieldname16_value - fieldname4_value, 2, true); } else { kdvoran = PREC(fieldname16_value + fieldname4_value, 2, true); } jQuery('#calculation-kdvoran').html(kdvoran + ' TL'); return kdvoran; })();