/ Getting Started / SharePoint Framework
Search results

Getting Started with Syncfusion JavaScript (Essential JS 2) library and SharePoint Framework (SPFx)

23 Mar 2023 / 3 minutes to read

This article provides a step-by-step introduction to configure Syncfusion JavaScript (Essential JS 2) library and build a simple SharePoint framework application in Visual Studio Code.

Prerequisites

Setup development environment

  1. Create a new directory ej2-sharepoint, open the command prompt from that directory, and install the required SharePoint client-side development tools with global flag.

on Windows:

Copied to clipboard
npm install -g yo gulp @microsoft/generator-sharepoint

on OSX / LINUX

Copied to clipboard
sudo npm install -g yo gulp @microsoft/generator-sharepoint

The Yeoman SharePoint web part generator @microsoft/generator-sharepoint helps to create a SharePoint client-side project using Yeoman tool.

  1. Then, create a new client-side web part by running the Yeoman SharePoint Generator.
Copied to clipboard
yo @microsoft/sharepoint
  1. Set up the following options when the above command is prompted.
  2. Accept the default ej-2-sharepoint as your solution name, and then press the Enter key.
  3. Choose SharePoint Online only (latest), and press the Enter key.
  4. Choose Use the current folder to place the files in current location, and press the Enter key.
  5. Type N to require the extension to be installed on each site explicitly when it is being used.
  6. Choose WebPart as the client-side component type to be created.

Next, it will ask the specific information about the web part.

  1. Change the ButtonComponent as your web part name, and then press the Enter key.
  2. Accept the default ButtonComponent description as your web part description, and then press the Enter key.
  3. Accept the default No javascript framework as the framework, and then press the Enter key.

ej2 spfx setup

  1. After configuring the above setup, the Yeoman generator will create the SharePoint client-side web part under ej2-sharepoint folder and install the required default dependencies.

Configure Syncfusion JavaScript UI control in application

  1. Install the @syncfusion/ej2 npm package in the application using the following command line.
Copied to clipboard
npm install @syncfusion/ej2 --save
  1. Open the SharePoint application in Visual Studio Code, and add the Syncfusion JavaScript Button control script and styles in the ~/src/webparts/buttonComponent/ButtonComponentWebPart.ts file.
  2. Import the Button source and add Syncfusion JavaScript style reference at the top of the file.
  3. Add the HTML button element in this.domElement.innerHTML, and initialize the Syncfusion JavaScript Button in the render() method of ButtonComponentWebPart class.
Copied to clipboard
....
....

import styles from './ButtonComponentWebPart.module.scss';
import * as strings from 'ButtonComponentWebPartStrings';

// import Essential JS 2 Button
import { Button } from '@syncfusion/ej2-buttons';

// add Syncfusion Essential JS 2 style reference from node_modules
require('../../../node_modules/@syncfusion/ej2/fabric.css');

....
....

export default class ButtonComponentWebPart extends BaseClientSideWebPart<IButtonComponentWebPartProps> {

    public render(): void {
    this.domElement.innerHTML = `
        <div class="${ styles.buttonComponent }">
            ....
            ....

            <!--HTML button element, which is going to render as Essential JS 2 Button-->
            <button id="normalbtn">Essential JS 2 Button</button>
        </div>`;

        // initialize button control
        let button: Button = new Button();

        // render initialized button
        button.appendTo('#normalbtn');
    }

    ....
    ....
}
  1. Run the application using the following command line, and the Syncfusion JavaScript Button control will be rendered in web browser.
Copied to clipboard
gulp serve

Click the Add a new web part in column one.

ej2 spfx initial view

Select the ButtonComponent web part.

ej2 spfx button web part

Finally, the Syncfusion JavaScript Button control is rendered in the SharePoint Framework client-side web part.

ej2 spfx button rendered