Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by WASI on Jan 28, 2009 23:37
open dhtmlx forum
combobox input upper case as default behaviour

i want my text to be auto uppercase on change event or keydown event
Answer posted by Support on Jan 29, 2009 05:35
Can be done as

combo.attachEvent("onChange",function(){
   combo.setComboText(combo.getComboText().toString().toUpperCase());
});