Getting Started with TypeScript ToggleButton

24 Feb 20232 minutes to read

Using the following steps, you can create a TypeScript ToggleButton component.

Creating an ToggleButton in TypeScript

You can create a TypeScript application with the help of the given TypeScript Getting Started Documentation.

To create a ToggleButton,include a input element with the HTML id attribute and pre-defined options set to it.

  • HTML
  • <input type="checkbox" id="toggle">
            <label for="toggle">Toggle</label>
            <script src="app.js"></script>
    • Create app.ts file and use the below content
  • JS
  • /// <reference path="jquery.d.ts" />  
            /// <reference path="ej.web.all.d.ts" />
    
            module ToggleButtonComponent {
                var toggleObj = new ej.ToggleButton($("#toggle"), {
                        defaultText: "Play",
                        activeText: "Pause",
                        defaultPrefixIcon: "e-icon e-mediaplay",
                        activePrefixIcon: "e-icon e-mediapause",
                        showRoundedCorner: true,
                        size: "large",
                        contentType: "textandimage",
                    })
            }
    • Now build your application, so that the app.ts file will compiled and automatically generated the app.js file which is added to your project (User have nothing to do with this file). Now, whatever code changes that you make in app.ts file will be reflected in app.js file by compiling build the application.

    Execution of above code will render the following output.

    Creating an ToggleButton in TypeScript

    Creating an ToggleButton in TypeScript