I am facing one problem, not sure whether its possible with combobox or not.
when i type something in combobox and select a value(which matches with my input string ), cursor blinks at the end of selected value so selected value is right justified.
its ok when i type and select a value however when i am done with selection and have clicked on some other control still selected value is right justified.
Is there any way that when i am done with combobox selection and have clicked on some other control then value which i have selected in combobox is left justified ?
For using DOMelem_input, do i have to modify dhtmlxcombo.js and add my function similar to below into it or it can be done after initializing combobox ?
dhtmlxEvent(combo.DOMelem_input, “keypress”, function(e){
e = e||event;
var code = e.which||e.keyCode;
if (code >=48 && code < 58) return true;
e.cancelBubble=true;
if (e.preventDefault) e.preventDefault();
return false;
});
Thanks
Get a guaranteed answer from DHTMLX technical support team
under the most suitable support plan