The Text and Value of the Combobox must be updated when a node is
selected. For this, simply add a client-side script at the bottom of your page:
<script type="text/javascript"> function ob_OnNodeSelect(id) { cbo1.setText(document.getElementById(id).innerHTML); cbo1.setValue(id); } </script>
|