Hi,
we have attached a javascript function in Onclientblur event of a Radcombobox.
if there is new value selected in the combo, the javascript function will run and it will increase the progressbar and set the focus to display button.
this is working fine if i change the value in the combo and click any where on the screen.
but if i press tab from the combo ,the focus is going away from the display button.
when i debug my javascript,i have been redircted to a telerik dll in the following section
if i select some value in combo and click out side i am getting in to the following code in telerik dll
we have attached a javascript function in Onclientblur event of a Radcombobox.
if there is new value selected in the combo, the javascript function will run and it will increase the progressbar and set the focus to display button.
this is working fine if i change the value in the combo and click any where on the screen.
but if i press tab from the combo ,the focus is going away from the display button.
when i debug my javascript,i have been redircted to a telerik dll in the following section
else
{if(d===Telerik.Web.UI.Keys.Tab){if(this.get_dropDownVisible()){this._hideDropDown(f)
}
this._raiseClientBlur(f);
this
._selectItemOnBlur(f);
this
._focused=false;
return
if i select some value in combo and click out side i am getting in to the following code in telerik dll
if
(this._focused){this._raiseClientBlur(c);
this
._selectItemOnBlur(c);
this
._focused=false;
the second one works fine and the focus is on display button.if i wont click out side and just press the tab the focus is going away from the display button.
please let me know what went wrong and what i should do to set the focus on the button if i press tab from radcombobox.
thanks,
Bharathwajan