You are viewing limited content. For full access, please sign in.

Question

Question

Mileage Form Lookup Problem from Saved Draft

asked on June 25, 2015 Show version history

On a mileage form we have created, if we save it as a draft and then go back into to add additional auto-calculated rows (database lookup), each added row automatically adds the value 4.5 (sometimes a different value) in the miles field.

I have not been able to figure out why it is doing this and was wondering if anyone would be able to help try to solve the mystery. Below is a screenshot of part of the form and also the custom JavaScript we are using on the form.

In the above picture I simply loaded a saved draft and then clicked on "Click to add miles" link and it automatically put in the miles values even though the To and From options were not selected.

01$(document).ready(function () {
02   
03  //make fields with read-only class read-only
04  $('.read-only input').attr('readonly',true);
05  $('.read-only select').attr('disabled',true);
06   
07   
08  //Start Add row mile fields together
09    $('.cf-table-block').change(sumtotal);
10    function sumtotal() {
11        var sum = 0;
12        $('td.sum').each(function () {
13            var s = 0;
14            $(this).find('input').each(function () {
15                if ($(this).closest('td').siblings('td.roundTripCheck').find('input').is(':checked')) {
16                    s += parseNumber($(this).val() * 2)
17                }
18                else {
19                    s += parseNumber($(this).val());
20                }
21            })
22            $(this).find('.subtotal input').val(s);
23            sum += s;
24        });
25        $('.total input').val((sum).toFixed(2));
26    }
27    function parseNumber(n) {
28        var f = parseFloat(n); //Convert to float number.
29        return isNaN(f) ? 0 : f; //treat invalid input as 0;
30    }
31   //End Add row mile fields together
32   
33  //Start Calculate mileage reimbursement
34     $('.cf-table-block').on('change', 'input', sumreimbursement);
35     function sumreimbursement() {
36     var s = 0.44;
37     $('.totalmiles input').each(function () {
38     s *= parseNumber($(this).val());
39     });
40     $('.totalreimbursement input').val((s).toFixed(2));
41     }
42     function parseNumber(n) {
43     var f = parseFloat(n); //Convert to float number.
44     return isNaN(f) ? 0 : f; //treat invalid input as 0;
45     }
46 
47  //End Calculate mileage reimbursement
48   
49  //Uncheck verify checkbox field
50    document.getElementById('Field51-0').checked = false;
51   
52  //End Uncheck verify checkbox field
53   
54  //Start Auto Fill
55    function tableAutofill() {
56      $('.cf-table-block tbody tr').each(function () {
57      $(this).find('button.autofill').trigger('click');
58    });
59    }
60   
61    function autofill() { 
62    //$('.autofill').trigger('click');
63      $(this).closest("tr").find('button.autofill').trigger('click');
64    }
65   
66    $('.lookupCondition input').blur(autofill);
67    $('.lookupCondition select').blur(autofill);
68    $('.cf-table-add-row').click(function(){
69      $('.lookupCondition input').blur(autofill);
70      $('.lookupCondition select').blur(autofill);       
71    });
72    //$('.cf-table-block').change(tableAutofill);
73  //End Auto Fill
74   
75});

Thanks in advance for your help.

0 0

Replies

replied on June 25, 2015

The issue is odd and we'll look into it. However, see if you can work around it by adding

$('.cf-table-block tr:last').find('button.autofill').trigger('click');

inside of your

$('.cf-table-add-row').click(function(){

block.

0 0
replied on June 25, 2015 Show version history

Alex, I must be missing something. I'm not seeing the

1$('.cf-table-add-row').click(function(){

block that you mention in my custom JavaScript.

0 0
replied on June 25, 2015

In your initial post, it's between lines 68 and 71. Just insert the line in there.

0 0
replied on June 25, 2015

I added the code and now when adding a new row it shows 2.1 miles without selecting locations and after selecting the locations it does do the lookup, but it then blanks it out.

0 0
replied on June 25, 2015

Right. I mentioned that we'll need to look into this matter, but wanted to provide a workaround where when you add a new row, it will just trigger a click of the autofill button in the last row of the table and that will clear out the mileage there since the from and to locations in that row are still blank.

0 0
replied on June 25, 2015

Correct, but with what I just tried I did select the locations and it blanked it after that.

0 0
replied on June 25, 2015 Show version history

I simplified your form and tested just the relevant JS code and the work around seems fine for me. See the following:

01$(document).ready(function () {
02   
03  $('.read-only input').attr('readonly',true);
04   
05  function autofill() { 
06    $(this).closest("tr").find('button.autofill').trigger('click');
07  }
08   
09  $('.lookupCondition select').blur(autofill);
10  $('.cf-table-add-row').click(function () {
11    $('.read-only input').attr('readonly',true);
12    $('.lookupCondition select').blur(autofill);
13    $('.cf-table-block tr:last').find('button.autofill').trigger('click');
14  });
15   
16});

Note that when I resumed the submission, when I added a new row to the table, the mileage did briefly flash a number before it got cleared out. Then I was able to set my locations and after blurring out of the field, the proper mileage got populated and I could continue adding more rows.

Perhaps see if you can start with this base JS code and then try building back up to what you have.

0 0
replied on June 25, 2015 Show version history

I have commented out all of the additional code and I believe the issue comes about when you have more rows (around 15).

On the initial form we saved a draft that had 15 rows. I then went back into the saved form and added a row. If I immediately started adding locations, it would blank the initial miles, do the lookup of the mileage and then blank it out.

I then backed out of that form and re-opened the saved form. This time I waited about 30 seconds before adding a new row and a few more seconds before selecting the locations. This time, it blanked out the initial miles, performed the lookup, and kept the resulting miles.

So it looks like it is more of a timing problem.

0 0
replied on June 29, 2015

The original issue of coming back to the saved draft and the newly added rows having the lookup value populated even though the match fields haven't been set yet has been filed as a bug. This thread will be updated when there's more information regarding a resolution

1 0
replied on June 29, 2015

Alex, thank you for the update. I am also seeing a problem that when I do select a To and From location and after it performs the lookup and populates the Miles field with the correct number, that the Total Miles field updates, but the Total Reimbursement field does not update unless I either add a new row or change something else in the table. Is there a way to correct that so once the lookup is performed that the reimbursement amount is updated correctly?

0 0
replied on June 29, 2015

Try changing

$('.cf-table-block').on('change', 'input', sumreimbursement);

to

$('.cf-table-block').on('change lookup', 'input', sumreimbursement);

0 0
replied on June 29, 2015

Same result.

0 0
replied on June 30, 2015

I ended up re-writing your Javascript to go along with a slightly simplified version of the form.

The drop down fields use the CSS class, lookupCondition. The miles field uses the CSS class, read-only sum. The round trip checkbox uses the CSS class, roundTripCheck. The total miles field uses the CSS class, read-only total. The total reimbursement field uses the CSS class, read-only totalreimbursement.

The Javascript is

01$(document).ready(function () {
02   
03  $('.read-only input').attr('readonly',true);
04   
05  $('.cf-table-block').on('change lookup', 'input', sumtotal);
06 
07  function sumtotal() {
08    var sum = 0;
09    var x = 0.44;
10    $('td.sum').each(function () {
11      var s = 0;
12      $(this).find('input').each(function () {
13        if ($(this).closest('td').siblings('td.roundTripCheck').find('input').is(':checked')) {
14          s += parseNumber($(this).val() * 2)
15        }
16        else {
17          s += parseNumber($(this).val());
18        }
19      });
20      sum += s;
21    });
22    $('.total input').val(sum);
23    x *= sum;
24    $('.totalreimbursement input').val((x).toFixed(2));
25  }
26   
27  function parseNumber(n) {
28    var f = parseFloat(n); //Convert to float number.
29    return isNaN(f) ? 0 : f; //treat invalid input as 0;
30  
31   
32  function autofill() { 
33    $(this).closest("tr").find('button.autofill').trigger('click');
34  }
35   
36  $('.lookupCondition select').on('change',autofill);
37  $('.cf-table-add-row').click(function () {
38    $('.read-only input').attr('readonly',true);
39    $('.lookupCondition select').on('change',autofill);
40    $('.cf-table-block tr:last').find('button.autofill').trigger('click');
41  });
42   
43});

 

2 0
replied on July 1, 2015

Alex, I greatly appreciate the help on this. Your new JavaScript works like a charm! I look forward to a fix for the other issue.

1 0
replied on June 25, 2015

The issue is simple, I've seen it with my own work, but haven't had it be such a bother to fix it. Here's what is happening.

 

When you set up a repeatable table, there is code that has the information for a new line to be added in it. Whenever you add a row, it uses that code to generate the additional elements. 

When you use that JavaScript, it changes the value and just so happens to change the repeatable code as well. It's not always consistent but I have been able to find this happening when I've seen it. Technically you are not referring to that literal un-executed code with your javascript but if you were to monitor that value i would be you it will change/be changed from normal when you see this issue.

0 0
replied on April 28, 2016

This issue is addressed in Forms 10

Thank you.

0 0
replied on January 13, 2017

I am having a similar issue, see description below...

 

Employee Reimbursement Form Issues

Current JavaScript:
$(document).ready(function () {
    $('.amount').on('blur', 'input', sumtotal);
    $('.cf-table-block').on('blur', 'input', sumtotal);
    function sumtotal() {
        var sum = 0;
        $('.cf-table-block tbody tr').each(function () {
            var s = 0;
            s = parseNumber($(this).find('.amount input').val());
            sum += s;
        });
        $('#q15 input').val(sum);
    }
    function parseNumber(n) {
        var f = parseFloat(n); //Convert to float number.
        return isNaN(f) ? 0 : f; //treat invalid input as 0;
    }
});

$(document).ready(function () {
$.getScript('http://cutlet/Forms/js/jquery.mask.min.js', function () {
$(".act input").mask("9999-9-99");
});
});

Screenshots:


 
When only one row of data is present the amount calculates correctly.

 
As soon as another row is added the calculation is no longer correct.
 

How can I resolve this issues?
 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.