<div dir="ltr">Hi,<div><br></div><div>I have an autocomplete implemented on a text input. It is defined in the following manner:</div><div><br></div><div>                widget := html textInput.<br></div><div><span class="" style="white-space:pre">                </span>widget script: (<br>
</div><div><div><span class="" style="white-space:pre">                        </span>html jQuery this autocomplete</div><div><span class="" style="white-space:pre">                                </span>autoFocus: true; </div><div><span class="" style="white-space:pre">                                </span>search: [:string | self getRows: string]</div>
<div><span class="" style="white-space:pre">                                </span>labels: [:each | each formatSelectionRow]</div><div><span class="" style="white-space:pre">                                </span>callback: [:value :script | </div><div><span class="" style="white-space:pre">                                        </span>script callback: [self updateValue: value].</div>
<div><span class="" style="white-space:pre">                                        </span>self renderOn: html]))</div></div><div><br></div><div>It is functional with a full refresh of the screen after a value is selected from the rows that get returned from the search block. I&#39;m trying to remove this full refresh to improve user experience. Any ideas on how to do this? </div>
<div><br></div><div><br></div><div>Thanks,</div><div>Murtaza</div></div>