aspnetbootstrap-117898-data-editors-button.md
The BootstrapButton control extends standard button functionality by providing an enhanced client API and allows to automatically trigger a validation mechanism for DevExpress web controls on both the client side and server side.
Bootstrap Button provides the following features:
Radio Button Functionality
Built-in Validation
Full-Featured Client-Side API
This example demonstrates the Button control with default settings.
Initialize a new instance of the BootstrapButton class.
Use the ASPxButton.Text property to specify the button’s text.
Handle the ASPxButton.Click / ASPxClientButton.Click event occurring on the client/server side after the button is clicked.
<dx:BootstrapButton runat="server" Text="Button" AutoPostBack="false">
<ClientSideEvents Click="function(s,e) { dxbsDemo.showToast('The button has been clicked.'); }" />
</dx:BootstrapButton>