Tengo esta función Telerik que funciona con el mouse fuera.
function MouseOut(sender, eventArgs) { var btn = $find("<%=btnSave.ClientID%>"); btn.removeAttribute("disabled"); }Pero lo que estoy buscando es habilitar/deshabilitar el radbutton una vez que haya un carácter o más en un RadTextBox.
aquí está mi código:
<telerik:RadTextBox ID="summary" runat="server" Rows="3" MaxLength="2000" TextMode="MultiLine" Width="100" ToolTip="My Summary"><ClientEvents OnMouseOut="MouseOut" /></telerik:RadTextBox>Cualquier ayuda sería apreciada.