Hi,
When I use Javascript to focus on a RadComboBox as in the following:
It looks really cool. The ComboBox has focus and has a nice shading effect.
If, however, I set focus on the control using server-side code, as in:
It doesn't look the same. The ComboBox gets the blinking cursor, but no shading is applied.
Is it possible to get it to look the same in server-side code as it does in client-side?
Thanks.
When I use Javascript to focus on a RadComboBox as in the following:
var telerikObj = $find("MyRadComboBox");var ddl = telerikObj.get_inputDomElement();ddl.focus();It looks really cool. The ComboBox has focus and has a nice shading effect.
If, however, I set focus on the control using server-side code, as in:
MyRadComboBox.Focus();It doesn't look the same. The ComboBox gets the blinking cursor, but no shading is applied.
Is it possible to get it to look the same in server-side code as it does in client-side?
Thanks.