diff --git a/ej2-javascript/grid/js/getting-started.md b/ej2-javascript/grid/js/getting-started.md
index 6f33f28a1..32b0a84b8 100644
--- a/ej2-javascript/grid/js/getting-started.md
+++ b/ej2-javascript/grid/js/getting-started.md
@@ -14,26 +14,11 @@ domainurl: ##DomainURL##
This section explains the steps required to create a simple Essential® 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
@@ -196,18 +181,7 @@ Now, run the **index.html** in web browser, it will render the Essential® Essential® 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® 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
diff --git a/ej2-javascript/grid/ts/getting-started.md b/ej2-javascript/grid/ts/getting-started.md
index e9f21534c..97a7ba19f 100644
--- a/ej2-javascript/grid/ts/getting-started.md
+++ b/ej2-javascript/grid/ts/getting-started.md
@@ -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® JS 2
-[quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack) seed repository. This seed repository is pre-configured with the Essential® 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® JS 2 [quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack) seed repository. This seed repository is pre-configured with the Essential® 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
@@ -172,21 +155,8 @@ npm start
## Registering Syncfusion license
-Syncfusion® Essential® 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.
@@ -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)
\ No newline at end of file
+* [Columns in Data Grid](https://ej2.syncfusion.com/documentation/grid/columns/columns)
diff --git a/ej2-javascript/treegrid/js/getting-started.md b/ej2-javascript/treegrid/js/getting-started.md
index e3ae7a021..730197c53 100644
--- a/ej2-javascript/treegrid/js/getting-started.md
+++ b/ej2-javascript/treegrid/js/getting-started.md
@@ -15,24 +15,8 @@ This section explains the steps required to create a simple Essential® Essential® 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® 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
@@ -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)
\ No newline at end of file
+* [Tree Grid Feature Modules](https://ej2.syncfusion.com/javascript/documentation/treegrid/module)
diff --git a/ej2-javascript/treegrid/ts/getting-started.md b/ej2-javascript/treegrid/ts/getting-started.md
index 59e8790ea..f48b8b49d 100644
--- a/ej2-javascript/treegrid/ts/getting-started.md
+++ b/ej2-javascript/treegrid/ts/getting-started.md
@@ -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
@@ -195,20 +179,7 @@ npm start
## Registering Syncfusion license
-Syncfusion® Essential® 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