Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by nixon on Nov 05, 2008 04:38
open dhtmlx forum
Remove the text from combobox when click

I using dhtmlXCombo for search channels, intially when page load i do setText by z.setComboText('Search channel');

now i need to clear Text 'Search channel' set previosly on mouse click, is this possible

Is this possible and how do i go about doing this ?

Thanking in advance for all good work DHTMLX is doing

Nixon
Answer posted by Support on Nov 05, 2008 04:52
The next must provide necessary behavior

combo.attachEvent("onOpen",function(){
    combo.setComboText("");
    return true; 
})