Changes between Initial Version and Version 1 of Ticket #15280
- Timestamp:
- Mar 10, 2018, 4:53:31 PM (5 years ago)
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.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. 2 2 3 The failing <input> is missing 3 The failing `<input>` is missing 4 {{{#!js 4 5 class="ui-autocomplete-input" 5 6 HOWEVER, we have added that class using 6 7 $(this).addClass( "ui-autocomplete-input" ) 8 }}} 9 7 10 and it's still failing. 8 11 9 12 And before you ask, "yes" we have a JavaScript function containing all 3 of our AutoComplete: 13 {{{#!js 10 14 $( function() { 11 15 var availableTags = GetAvailableTags( 'ProjectID' ); … … 13 17 } ); 14 18 ... 19 }}} 20 15 21 This JavaScript function is executed to re-fresh the 3 AutoComplete functions after we add the TR. 16 22