Bug? ComboBox using Select dropdown

When I put this entry in your filtering sample for the combo select scenario

the drop down display is wonky.

there is a thin silver at the top representing this value.

when getting the getSelectedValue it tells me it is null

var SelectedText = ComboList[ComboId].getSelectedText();
var SelectedValue = ComboList[ComboId].getSelectedValue();

ComboList[ComboId].setComboText("");
ComboList[ComboId].filterSelf();

ComboList[ComboId].setComboText(SelectedText);
ComboList[ComboId].setComboValue(SelectedValue);

The SelectedValue comes out null and because the SelectedText is “” the combo automatically puts in the selected value into the input box which is the word “null”.

Now, I can get around the null by using getActualValue with getComboText.

That leaves the blank option is still not displaying properly.

there is a thin silver at the top representing this value.

The height of options is not fixed, it adjusts to the height of the text of an option. You may set a certain height for options as follows:

.dhx_combo_list div { height:15px; }

when getting the getSelectedValue it tells me it is null

we have not reproduced this problem in the latest Combo version.