Hi All,
I am getting response in xml format for soap web services . Response structure as fallow below
I want to bind "Col01" value to combobox in xml view. my xml view code as below
<ComboBox width="310px" placeholder="{i18n>OUPlaceHolder}" items="{}">
<core:Item key="{Col01}" text="{}"/>
</ComboBox>
Could any one help me here how to bind the xml data to combobox in sap ui5.
Note: I have created xml model and xml data has been set to xml model. below is the fallowing code
var oModel = new sap.ui.model.xml.XMLModel(response);
this.getView().setModel(oModel, "OUMapping");
Thanks,
Manju