Thanks Peter,
works well at ie7
i found this problem..at all browser..
ComboBox Vertical-align Problem in jqxWindow
base.css
/*applied to the ComboBox’s input field.*/
.jqx-combobox-input
{
-webkit-appearance: none;
-webkit-border-radius: 0px;
padding: 0 0 0 0;
outline: none;
background: #FFFFFF;
border: 0px solid #aaaaaa;
font-family: Verdana,Arial,sans-serif /*{ffDefault}*/;
font-size: 13px;
}
my temp solution
/*applied to the ComboBox’s input field.*/
.jqx-combobox-input
{
-webkit-appearance: none;
-webkit-border-radius: 0px;
padding: 0 0 0 0;
outline: none;
background: #FFFFFF;
border: 0px solid #aaaaaa;
font-family: Verdana,Arial,sans-serif /*{ffDefault}*/;
font-size: 13px;
height: 15px; /*temp*/
}