Completed
Last Updated: 29 Sep 2015 11:01 by ADMIN
ADMIN
Danail Vasilev
Created on: 27 Jul 2015 15:01
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Button decorated by RadFormDecorator with Bootstrap skin can only be clicked on the text
For the time being you can use the following workaround:

CSS:
	<style>
		.RadForm_Bootstrap.RadForm.rfdButton form a.rfdSkinnedButton {
			padding: 0px;
			height: 32px;
		}
			.RadForm_Bootstrap.RadForm.rfdButton form a.rfdSkinnedButton input.rfdDecorated {
				height: 32px;
			}
	</style>

ASPX:
		<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
		<telerik:RadSkinManager ID="RadSkinManager1" runat="server" Skin="Bootstrap" ShowChooser="true"></telerik:RadSkinManager>
		<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All" />
		<asp:Button ID="Button1" Text="Click" runat="server" />
0 comments