Dear team ,
I have little problem with the form that contain combo inside it, when i load the form data, combo value didn’t select the selected option, it always select the first option
here is my form struct
<items>
<item type="settings" position="label-left" labelWidth="80" inputWidth="190"></item>
<item type="fieldset" name="data" label="Add new contact" inputWidth="auto">
<item type="hidden" name="tags"></item>
<item type="input" name="person" label="Name"></item>
<item type="combo" name="country" label="Country" connector="http://localhost/index.php/combo_svc/country" validate="NotEmpty"></item>
<item type="input" name="number" label="Number" validate="NotEmpty"></item>
<item type="block" width="280" classname="buttonlist">
<item type="combo" name="tag" connector="http://localhost/index.php/combo_svc/tag" label="Tags" inputWidth="100"></item>
<item type="newcolumn"></item>
<item type="button" name="add_tag" value="Add" id="add_tag" classname="add_button"></item>
</item>
<item type="block" width="280" classname="buttonlist">
<item type="button" name="send" value="Save" id="send"></item>
</item>
</item>
<item type="newcolumn"></item>
<item type="fieldset" label="Tags used">
<item type="template" name="taglist" label=""></item>
</item>
</items>
and data loaded for the form
<data>
<person><![CDATA[Lee Smith]]></person>
<country><![CDATA[1]]></country>
<number><![CDATA[898756324]]></number>
<tags><![CDATA[test]]></tags>
</data>
and combo option generated from connector
<complete>
<option value="61">Australia<img style="float:right;margin-right:8px" src="asset/imgs/flags/au.png" /> </option>
<option value="62">Indonesia<img style="float:right;margin-right:8px" src="asset/imgs/flags/id.png" /> </option>
<option value="63">Malaysia<img style="float:right;margin-right:8px" src="asset/imgs/flags/my.png" /> </option>
<option value="47">Norway<img style="float:right;margin-right:8px" src="asset/imgs/flags/no.png" /> </option>
<option value="46">Sweden<img style="float:right;margin-right:8px" src="asset/imgs/flags/se.png" /> </option>
<option value="44">United Kingdom<img style="float:right;margin-right:8px" src="asset/imgs/flags/gb.png" /> </option>
<option value="1">United States<img style="float:right;margin-right:8px" src="asset/imgs/flags/us.png" /> </option>
</complete>
regards