Getting Started
24 May 20171 minute to read
This section provides details on how to create and customize Groupbutton control in an ASP.NET WebForms application.
Create a simple GroupButton control
Create ASP.NET WebForms project and add necessary assemblies and script dependencies with the help of given Getting started document.
Add the below code the aspx page to render a simple groupbutton control.
<ej:GroupButton ID="grp_btn" runat="server" Size="Large">
<Items>
<ej:GroupButtonItem Text="Save"></ej:GroupButtonItem>
<ej:GroupButtonItem Text="Open"></ej:GroupButtonItem>
<ej:GroupButtonItem Text="Delete"></ej:GroupButtonItem>
</Items>
</ej:GroupButton>
Run the project to get the following output