Hi,
This is the code I use to generate the combo:
...html, head, body etc...
<script type="text/javascript" src="/Parket/Globale_Javascripts/dhtmlxcommon.js"></script>
<script type="text/javascript" src="/Parket/Globale_Javascripts/dhtmlxcombo.js"></script>
...
<table>
<tr>
<td>Country:</td>
<td>
<div id="country" style="width:200px; height:30px;"></div>
</td>
</tr>
</table>
...
...
<script type="text/javascript">
window.dhx_globalImgPath="/Dhtmlxcombo/";
var cboCountry=new dhtmlXCombo("country","alfa",200);
cboCountry.addOption([[""," "],["BE","België"],["NL","Nederland"]]);
</script>
... end body, end html...
België shows as België
How can I fix this? (Probably something stupid I forgot…)
Thx in advance!