Creating a GroupButton in TypeScript

You can create a TypeScript application with the help of the given https://help.syncfusion.com/js/typescript.In application, Within an index.html file add the scripts references in the order mentioned in the above link.

This can be created from an input element with the HTML id attribute and pre-defined options set to it.

  • HTML
  • <div class="row">
                    <div class="cols-sample-area">
                        <div class="control">
                            <label>Appointment View</label>
                            <div class="element">
                                <div id="GroupButton"></div>
                            </div>
                        </div>
                    </div>
                </div>

    Create app.ts file and past the below content

  • JAVASCRIPT
  • /// <reference path="tsfiles/jquery.d.ts" />
        /// <reference path="tsfiles/ej.web.all.d.ts" />
    
        module GroupButtonComponent {
    
    
        $(function () {
            new ej.GroupButton($("#GroupButton"), {
    
                dataSource: [
    
                    { text: "Day", contentType: "textonly" },
    
                    { text: "Week", contentType: "textonly" },
    
                    { text: "Work Week", contentType: "textonly" },
    
                    { text: "Month", contentType: "textonly", selected: "selected" },
    
                    { text: "Agenda", contentType: "textonly" }]
    
            }
            );
        });
            }

    Now build your application, so that the app.js is automatically generated and got 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 automatically.

    Configuring APIs in GroupButton

    All GroupButton properties, can be configured and used in TypeScript platform, with types specification. Please refer the below code example to know the configuring the APIs of GroupButton in typescript platform

  • JAVASCRIPT
  • /// <reference path="tsfiles/jquery.d.ts" />
        /// <reference path="tsfiles/ej.web.all.d.ts" />
    
        module GroupButtonComponent {
    
    
        $(function () {
            new ej.GroupButton($("#GroupButton"), {
    
                dataSource: [
    
                    { text: "Day", contentType: "textonly" },
    
                    { text: "Week", contentType: "textonly" },
    
                    { text: "Work Week", contentType: "textonly" },
    
                    { text: "Month", contentType: "textonly", selected: "selected" },
    
                    { text: "Agenda", contentType: "textonly" }],
                showRoundedCorner: true,
                selectedItemIndex: [4]           
         
                
    
            }
            );
        });
            }

    The following code will render the following output.