or
hello
Radtextbox client events not working.
on mousehover i want to increase the size of textbox
and on onmouseout reset the size of textbox
its not working
please help
<script type="text/javascript"> function show(textField) { textField.style.width="670px"; textField.style.height="400px"; } function hide(textField) { textField.style.width="670px"; textField.style.height="100px"; } </script> <telerik:RadTextBox ID="txtComment" runat="server" TextMode ="MultiLine" Width ="670px" Font-Size ="12px" Font-Names ="Arial" style="overflow:auto; padding :5px" Rows ="5" > <ClientEvents OnMouseOver ="show()" onmouseout="hide()" / </telerik:RadTextBox> 
Dim sm As ScriptManager = ScriptManager.GetCurrent(Me)
sm.SetFocus(ddl_Category.ClientID)
The good news is that it works momentarily, I can see focus jump to this control (which happens to be on another part of the page but within the same RadAjaxPanel) and can even get a couple of characters to type if I'm fast. But within less than a second the focus is lost and pressing tab goes to the first control on the page.
I don't know where to even start looking to resolve this issue. I've tried many different methods to try and set focus to the control thinking they weren't working - when I realized that they actually were working they just got overrode a second later I got stuck.
Thanks,


function ShowEditForm(id, rowIndex) { var grid = $find("<%= grdIncidents.ClientID %>"); var rowControl = grid.get_masterTableView().get_dataItems()[rowIndex].get_element(); grid.get_masterTableView().selectItem(rowControl, true); window.radopen("EditIncidents.aspx?IncidentID=" + id, "IncidentListDialog"); return false;}<telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="True" RestrictionZoneID="RadPane1" ReloadOnShow="true" ><Windows><telerik:RadWindow ID="IncidentListDialog" runat="server" Title="Incident" Modal="false" ReloadOnShow="true" ShowContentDuringLoad="false" Width="900px" Height="760px" Top="80px" Left="100px" ></telerik:RadWindow> </Windows></telerik:RadWindowManager>