AutoComplete in DataGrid issue
hi,
i using autocomplete component assist users valid entries. using itemeditor thusly:
<mx:datagridcolumn id="icd9code" headertext="icd-9" width="75" datafield="icd9code"
editordatafield="text" editable="true">
<mx:itemeditor>
<mx:component>
<shoui:autocomplete
dataprovider="{outerdocument.icd9list}"
labelfield="icd9code"
change="outerdocument.updatedescription(event);"/>
</mx:component>
</mx:itemeditor>
</mx:datagridcolumn>
the "change" fires when text portion of combo box typed in. not fired when data in box changes or when list scrolled using down arrow. since component can't have id, can't bind field display description user scrolls (like in documentation example). need able catch change event on dropdown list. i've tried adding event listener dropdown, didn't work.
so, want able use autocomplete itemeditor , bind text control such can display description of each dropdown list item user scrolls list.
any appreciated.
i using autocomplete component assist users valid entries. using itemeditor thusly:
<mx:datagridcolumn id="icd9code" headertext="icd-9" width="75" datafield="icd9code"
editordatafield="text" editable="true">
<mx:itemeditor>
<mx:component>
<shoui:autocomplete
dataprovider="{outerdocument.icd9list}"
labelfield="icd9code"
change="outerdocument.updatedescription(event);"/>
</mx:component>
</mx:itemeditor>
</mx:datagridcolumn>
the "change" fires when text portion of combo box typed in. not fired when data in box changes or when list scrolled using down arrow. since component can't have id, can't bind field display description user scrolls (like in documentation example). need able catch change event on dropdown list. i've tried adding event listener dropdown, didn't work.
so, want able use autocomplete itemeditor , bind text control such can display description of each dropdown list item user scrolls list.
any appreciated.
More discussions in Flex (Read Only)
adobe
Comments
Post a Comment