Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 6 additions & 32 deletions ej2-javascript/grid/js/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,11 @@ domainurl: ##DomainURL##
This section explains the steps required to create a simple Essential<sup style="font-size:70%">&reg;</sup> JS 2 DataGrid and demonstrates the basic usage of the DataGrid control in a JavaScript application.

## Prerequisites

To get started with application, ensure the following software to be installed in the machine.

* [git](https://git-scm.com/downloads)
* [Node.js](https://nodejs.org/en/)

### Browser support

| Browser | Supported versions |
|----------|----------|
| Chrome | 63+ |
| Firefox | 58+ |
| Opera | 50+ |
| Edge | 13+ |
| IE | 11+ |
| Safari | 9+ |
| iOS | 9+ |
| Android | 4.4+ |
| Windows Mobile | IE 11+ |


Ensure the following tools are installed on your machine:

* [Visual Studio Code](https://code.visualstudio.com) (or any text editor) to create the HTML file
* A modern web browser (Chrome, Edge, Firefox, or Safari) to view the result

## Dependencies

Expand Down Expand Up @@ -196,18 +181,7 @@ Now, run the **index.html** in web browser, it will render the Essential<sup sty

## Registering Syncfusion license

Syncfusion<sup style="font-size:70%">&reg;</sup> Essential<sup style="font-size:70%">&reg;</sup> JS 2 controls require a valid license key from version 16.2.0.17 onwards. Without a license key, a license validation message will appear in the browser console.

**Step 1:** Obtain your license key from the [Syncfusion License Portal](https://www.syncfusion.com/account/downloads) or from the [licensing FAQ page](https://ej2.syncfusion.com/documentation/licensing/licensing-troubleshoot).

**Step 2:** Register the license key in your **index.js** file before initializing any Syncfusion<sup style="font-size:70%">&reg;</sup> control.

```javascript
// Register Syncfusion license key
ej.base.registerLicense('YOUR_LICENSE_KEY_HERE');
```

> Replace `'YOUR_LICENSE_KEY_HERE'` with the actual license key obtained from your Syncfusion account. For more information, refer to the [Syncfusion Licensing documentation](https://ej2.syncfusion.com/documentation/licensing/license-key-registration).
The Syncfusion® Data Grid requires a valid license key to be registered in the application. To prevent license validation warnings, refer to the [Syncfusion licensing](https://ej2.syncfusion.com/javascript/documentation/licensing/overview) documentation

## Troubleshooting

Expand Down
52 changes: 11 additions & 41 deletions ej2-javascript/grid/ts/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,18 @@ domainurl: ##DomainURL##

# Getting started in TypeScript Data Grid control

This section explains the steps to create a simple Data Grid and demonstrates the basic usage of the Data Grid component using the Essential<sup style="font-size:70%">&reg;</sup> JS 2
[quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack) seed repository. This seed repository is pre-configured with the Essential<sup style="font-size:70%">&reg;</sup> JS 2 package.
This section explains the steps to create a simple Data Grid and demonstrates the basic usage of the Data Grid component using the Essential<sup style="font-size:70%">&reg;</sup> JS 2 [quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack) seed repository. This seed repository is pre-configured with the Essential<sup style="font-size:70%">&reg;</sup> JS 2 package.

> This application is integrated with the **webpack.config.js** configuration and uses the latest version of the [webpack-cli](https://webpack.js.org/api/cli#commands). For more information about webpack and its features, refer to the [webpack documentation](https://webpack.js.org/guides/getting-started).

## Prerequisites

To get started with application, ensure the following software to be installed in the machine.

| Requirement | Version |
|-------------|---------|
| [git](https://git-scm.com/downloads) | Latest version |
| [Node.js](https://nodejs.org/en/) | 14.15.0 or above |
| [Visual Studio Code](https://code.visualstudio.com/) | Latest version |


### Browser support

| Browser | Supported versions |
|----------|----------|
| Chrome | 63+ |
| Firefox | 58+ |
| Opera | 50+ |
| Edge | 13+ |
| IE | 11+ |
| Safari | 9+ |
| iOS | 9+ |
| Android | 4.4+ |
| Windows Mobile | IE 11+ |

Ensure the following tools are installed on your machine:

* [Git](https://git-scm.com/downloads)
* [Node.js](https://nodejs.org/en/)
* [Visual Studio Code](https://code.visualstudio.com/)


## Setup for local development

Expand Down Expand Up @@ -172,21 +155,8 @@ npm start

## Registering Syncfusion license

Syncfusion<sup style="font-size:70%">&reg;</sup> Essential<sup style="font-size:70%">&reg;</sup> JS 2 components require a valid license key from version **16.2.0.41** onwards. Using the components without a license key will display a **license validation message** in the browser console.

**Steps to register the license key:**

1. Sign in to the [Syncfusion License Portal](https://www.syncfusion.com/account/downloads) and copy your license key.
2. Register the key in your **src/app/app.ts** file, before instantiating any Syncfusion component:

```ts
import { registerLicense } from '@syncfusion/ej2-base';

registerLicense('YOUR_LICENSE_KEY_HERE');
```

> For more details on obtaining and registering a license key, refer to the [License Key Generation](https://ej2.syncfusion.com/documentation/licensing/license-key-generation) and [License Key Registration](https://ej2.syncfusion.com/documentation/licensing/license-key-registration) documentation.

The Syncfusion® Data Grid requires a valid license key to be registered in the application. To prevent license validation warnings, refer to the [Syncfusion licensing](https://ej2.syncfusion.com/documentation/licensing/overview) documentation.

## Troubleshooting

**Grid styles are not applied:** Ensure that the required Syncfusion theme package is installed and the theme CSS is imported correctly in the `src/styles/styles.css` file.
Expand All @@ -198,4 +168,4 @@ registerLicense('YOUR_LICENSE_KEY_HERE');

* [Data Grid Feature Modules](https://ej2.syncfusion.com/documentation/grid/module)
* [Data Binding in Data Grid](https://ej2.syncfusion.com/documentation/grid/data-binding/data-binding)
* [Columns in Data Grid](https://ej2.syncfusion.com/documentation/grid/columns/columns)
* [Columns in Data Grid](https://ej2.syncfusion.com/documentation/grid/columns/columns)
35 changes: 4 additions & 31 deletions ej2-javascript/treegrid/js/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,8 @@ This section explains the steps required to create a simple Essential<sup style=

## Prerequisites

To get started with application, ensure the following software to be installed in the machine.

* [git](https://git-scm.com/downloads)
* [Node.js](https://nodejs.org/en/)

### Browser support

| Browser | Supported versions |
|----------|----------|
| Chrome | 63+ |
| Firefox | 58+ |
| Opera | 50+ |
| Edge | 13+ |
| IE | 11+ |
| Safari | 9+ |
| iOS | 9+ |
| Android | 4.4+ |
| Windows Mobile | IE 11+ |
* [Visual Studio Code](https://code.visualstudio.com) (or any text editor) to create the HTML file
* A modern web browser (Chrome, Edge, Firefox, or Safari) to view the result

## Dependencies

Expand Down Expand Up @@ -221,18 +205,7 @@ Now, run the **index.html** in web browser, it will render the Essential<sup sty

## Registering Syncfusion license

Syncfusion<sup style="font-size:70%">&reg;</sup> Essential<sup style="font-size:70%">&reg;</sup> JS 2 controls require a valid license key from version 16.2.0.17 onwards. Without a license key, a license validation message will appear in the browser console.

**Step 1:** Obtain your license key from the [Syncfusion License Portal](https://www.syncfusion.com/account/downloads) or from the [licensing FAQ page](https://ej2.syncfusion.com/documentation/licensing/licensing-troubleshoot).

**Step 2:** Register the license key in your **index.js** file before initializing any Syncfusion<sup style="font-size:70%">&reg;</sup> control.

```javascript
// Register Syncfusion license key
ej.base.registerLicense('YOUR_LICENSE_KEY_HERE');
```

> Replace `'YOUR_LICENSE_KEY_HERE'` with the actual license key obtained from your Syncfusion account. For more information, refer to the [Syncfusion Licensing documentation](https://ej2.syncfusion.com/documentation/licensing/license-key-registration).
The Syncfusion® Tree Grid requires a valid license key to be registered within the application. To prevent license validation warnings, refer to the [Syncfusion licensing](https://ej2.syncfusion.com/javascript/documentation/licensing/overview) documentation.

## Troubleshooting

Expand All @@ -242,4 +215,4 @@ ej.base.registerLicense('YOUR_LICENSE_KEY_HERE');

## See Also

* [Tree Grid Feature Modules](https://ej2.syncfusion.com/javascript/documentation/treegrid/module)
* [Tree Grid Feature Modules](https://ej2.syncfusion.com/javascript/documentation/treegrid/module)
41 changes: 6 additions & 35 deletions ej2-javascript/treegrid/ts/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,11 @@ This section explains the steps to create a simple Tree Grid and demonstrates th

## Prerequisites

To get started with application, ensure the following software to be installed in the machine.

| Requirement | Version |
|-------------|---------|
| [git](https://git-scm.com/downloads) | Latest Version |
| [Node.js](https://nodejs.org/en/) | 14.15.0 or above, Recommended: Latest Version |
| [Visual Studio Code](https://code.visualstudio.com/) | Latest Version |

### Browser support

| Browser | Supported versions |
|----------|----------|
| Chrome | 63+ |
| Firefox | 58+ |
| Opera | 50+ |
| Edge | 13+ |
| IE | 11+ |
| Safari | 9+ |
| iOS | 9+ |
| Android | 4.4+ |
| Windows Mobile | IE 11+ |
Ensure the following tools are installed on your machine:

* [Git](https://git-scm.com/downloads)
* [Node.js](https://nodejs.org/en/)
* [Visual Studio Code](https://code.visualstudio.com/)

## Set up development environment

Expand Down Expand Up @@ -195,20 +179,7 @@ npm start

## Registering Syncfusion license

Syncfusion<sup style="font-size:70%">&reg;</sup> Essential<sup style="font-size:70%">&reg;</sup> JS 2 components require a valid license key from version **16.2.0.41** onwards. Using the components without a license key will display a **license validation message** in the browser console.

**Steps to register the license key:**

1. Sign in to the [Syncfusion License Portal](https://www.syncfusion.com/account/downloads) and copy your license key.
2. Register the key in your **src/app/app.ts** file, before instantiating any Syncfusion component:

```ts
import { registerLicense } from '@syncfusion/ej2-base';

registerLicense('YOUR_LICENSE_KEY_HERE');
```

> For more details on obtaining and registering a license key, refer to the [License Key Generation](https://ej2.syncfusion.com/documentation/licensing/license-key-generation) and [License Key Registration](https://ej2.syncfusion.com/documentation/licensing/license-key-registration) documentation.
The Syncfusion® Tree Grid requires a valid license key to be registered within the application. To prevent license validation warnings, refer to the [Syncfusion licensing](https://ej2.syncfusion.com/documentation/licensing/overview) documentation.

## Troubleshooting

Expand Down