Button Type in EJ 1 ASP.NET MVC Button
26 Oct 2016 / 1 minute to read
Button is used as normal click able button, submitting form data, resetting the form data to its initial value. According to the usage of button, you can render the button in three types. Using the Type property, you can easily render the button in following types.
List of Button types
Button | The button is a click able button |
Submit | The button is a submit button (submits form-data) |
Reset | The button is a reset button (resets the form-data to its initial values) |
The following steps explains you the details about rendering the Button with above mentioned button types.
- In the CSHTML page, configure the Button widget as follows.
@*Add the code in CSHTML page to configure and initialize the control*@
@* Set the different types for button control as follows.*@
<div class="control">
@Html.EJ().Button("button_button").Text("button").ShowRoundedCorner(true).Size(ButtonSize.Mini).Type(ButtonType.Button)
<br />
<br />
@Html.EJ().Button("button_submit").Text("submit").ShowRoundedCorner(true).Size(ButtonSize.Mini).Type(ButtonType.Submit)
<br />
<br />
@Html.EJ().Button("button_reset").Text("reset").ShowRoundedCorner(true).Size(ButtonSize.Mini).Type(ButtonType.Reset)
</div>
Execute the above code to render the following output.
Different button types
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page