Hi, i’m building an key => value autocomplete for my project but I have a problem.
The normal autocomplete with values only: http://jsfiddle.net/tvcaj7zr/
My autocomplete with keys stored and values displayed: http://jsfiddle.net/86kdhs5s/1/
It works pretty well, when you type a value, the key of the value is saved in the cell for the server side but the value is displayed to the user.
The problem I have: source function of my autocomplete is called every time I do a change, on table loading, for all the cells! In contrary of the normal autocomplete behavior, which execute the source function only on double click on a cell and while typing text in the cell.
Can you please help me to solve this issue ? To make my autocomplete behave like the original one.
Thank you in advance !