Hi
$(“#comboBoxBrand”).jqxComboBox({
placeHolder: ‘– Please Select –‘,
disabled : false,
displayMember: “name” ,
valueMember: “code”,
source: subAdapter,
width: ‘200px’,
height: ’20px’,
theme:theme,
searchMode: ‘contains’,
autoComplete: true
});
$(“#comboBoxBrand”).jqxComboBox(‘focus’);
it works in different way between FF and IE
in FF .. focused into “combobox” but “– Please Select” place holder appears, when the user starts giving input then it disappears.
in IE – focused into “combobox” but “– Please Select” disappears, box appears empty to enter input.
Thanks