WebSDK: (javascript) how to add some refresh function to this library?

Hi Folks,

I’m using this open source library to make a websdk combobox.

I use

                    $('#' + this.mControlID + '_Autocomplete').autocomplete({
                        source: this.mValueList,
                        onSelectItem: classInstance.onSelectItem,
                        highlightClass: this.mHighlighIndicator,
                        treshold: this.mThreshold,
                        maximumItems: this.mMaximumItems
                    });

in the render function to initialize the combobox.
but when I update the valuelist, how can I update the javascript control with the new values
without re-defining the whole combobox control ?
as there are some live artefacts I would like not to see…
thanks.