Changes between Initial Version and Version 1 of Ticket #15280


Ignore:
Timestamp:
Mar 10, 2018, 4:53:31 PM (5 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #15280 – Description

    initial v1  
    1 We have a VERY bizarre condition with Autocomplete.  When we add a new <tr> to our html <table> 2 our of 3 autocomplete <input> tags work great but the 3rd one is failing.
     1We have a VERY bizarre condition with Autocomplete.  When we add a new `<tr>` to our html `<table>` 2 our of 3 autocomplete `<input>` tags work great but the 3rd one is failing.
    22
    3 The failing <input> is missing
     3The failing `<input>` is missing
     4{{{#!js
    45          class="ui-autocomplete-input"
    56HOWEVER, we have added that class using
    67           $(this).addClass( "ui-autocomplete-input" )
     8}}}
     9
    710and it's still failing.
    811
    912And before you ask, "yes" we have a JavaScript function containing all 3 of our AutoComplete:
     13{{{#!js
    1014        $( function() {
    1115                var availableTags = GetAvailableTags( 'ProjectID' );
     
    1317         } );
    1418        ...
     19}}}
     20
    1521This JavaScript function is executed to re-fresh the 3 AutoComplete functions after we add the TR.
    1622