css - Using bootstrap icons in grid as command buttons -
i trying figure out how use bootstrap icons buttons commandnames in gridtemplatecolumn or gridbuttoncolumn.
<telerik:gridtemplatecolumn uniquename="commands"> <itemtemplate> <asp:button id="btndelete" cssclass="glyphicon glyphicon-remove-sign" runat="server" /> </itemtemplate> </telerik:gridtemplatecolumn> <telerik:gridbuttoncolumn buttoncssclass="glyphicon glyphicon-minus-sign" />
at least trying make bootstrap icon act button not button, icon.
change asp:button
asp:linkbutton
<itemtemplate> <asp:linkbutton id="btndelete" runat="server" cssclass="glyphicon-remove-sign"/> </itemtemplate>
Comments
Post a Comment