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> 