Completed
Last Updated: 20 Sep 2016 06:41 by Arnstein
ADMIN
Danail Vasilev
Created on: 19 Nov 2013 09:59
Category: Grid
Type: Bug Report
1
FIX the appearance of RadButton when placed in GridTemplateColumn of RadGrid
For the time being the following workaround can be used:

CSS:

    <style>
        .RadGrid_Default .RadButton_Simple input {
            border: 0 none;
        }
    </style>

ASPX:

        <telerik:RadGrid ID="RadGrid1" runat="server">
            <MasterTableView>
                <Columns>
                    <telerik:GridTemplateColumn UniqueName="EditColumn" AllowFiltering="false">
                        <HeaderStyle Width="70px" />
                        <ItemTemplate>
                            <telerik:RadButton ID="rbEdit" runat="server" Text="Select" Skin="Simple"
                                AutoPostBack="false">
                            </telerik:RadButton>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                </Columns>
            </MasterTableView>
        </telerik:RadGrid>

where Simple is the name of the used Skin.











1 comment
Arnstein
Posted on: 26 Nov 2013 11:19
Although the workaround is good, I hope this issue will be fixed in the next release.

Regards,
Arnstein