pashminakazi edited a comment on issue #1181:
URL: https://github.com/apache/royale-asjs/issues/1181#issuecomment-1069092792


   Hi @yishayw
   Can u make a change to make comboBox work proper without any change 
   we are using comboBox in our application as
   
   
   ```
   <mx:ComboBox id="cboStatus" width="120" height="22" 
dataProvider="{DS_cboStatus.Table}" labelField="EmailDocStatusNm">
   
   [Bindable]
   private var DS_cboStatus:Object = new Object();
   
   DS_cboStatus = event.result;
   ```
   event.result is having an XML type data
   
   It was not working before your change and not after your change we have to 
make some changes to make it work but as we have 1000 of combobox in our 
application so we don't want to make change.
   
   It works with this change
   ```
   [Bindable]
   private var DS_cboStatus:XML = new XML();
   
   DS_cboStatus = new XML(event.result);
   ```
   
   Please make it work as it is if there is small change required in SDK and do 
not charge for it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to