Won't Fix
Last Updated: 05 Jan 2016 16:44 by ADMIN
ADMIN
Danail Vasilev
Created on: 28 Feb 2013 13:45
Category: Button
Type: Bug Report
0
FIX RadButton is not outlined when it is focused on the server-side
When the focus of the RadButton is set on the server-side, the active element becomes the inner input and not the span wrapper of the button. 
For the time being the client-side focus can be set. For example:

       	<telerik:RadButton ID="serverFocusBtn" runat="server" RenderMode="Classic" Text="Postback" TabIndex="0" OnClientLoad="btn_load" />
        <script type="text/javascript">
            function btn_load(btn) {
                btn.focus();
            }                 
        </script>
1 comment
ADMIN
Niko
Posted on: 05 Jan 2016 16:43
With Lightweight rendering the Button is focused without any issues. Also the workaround for the Classic render mode is easy.