I have a fairly old app that the boss has ordered me to update, to make it more 'Bootstrappy', more like our more recent programs.
To this end I have updated my controls to the latest and set the RadGrid skin to Bootstrap. So far, so good.
However, it's my understanding that 'ordinary' Bootstrap and Telerik 'Bootstrap' can conflict.
Here is the original HTML for my Edit button:
<telerik:GridTemplateColumn UniqueName="TemplateEditColumn" AllowFiltering="False" ItemStyle-Width="40px" HeaderStyle-Width="40px">
<HeaderStyle Width="40px"></HeaderStyle>
<ItemStyle HorizontalAlign="Center" />
<ItemTemplate>
<asp:HyperLink ID="EditLink" runat="server" Text="Edit"></asp:HyperLink>
</ItemTemplate>
</telerik:GridTemplateColumn>
What I'd like to do is change a couple of the items in the grid rows to bright shiny BootStrap type icons, in particular the Edit button. So far I've had little luck.
I'm going to attach an image of the sort of buttons I'm aiming for.