This project shows the minimal steps required to create an Ionic Angular application and integrate Syncfusion Angular UI components, particularly the @syncfusion/ej2-angular-grids package. It provides clear guidance on setting up prerequisites, installing required packages, importing Angular modules, applying component styles, and rendering a simple data‑bound Grid within an Ionic page.
- Ionic + Angular starter setup
- Add
@syncfusion/ej2-angular-gridsand importGridAllModule - Example data-bound Grid with sample data
- See Syncfusion system requirements: https://ej2.syncfusion.com/angular/documentation/system-requirement
ionicCLI^6.x.xor later
First, make sure the Ionic CLI is installed globally:
npm install -g ionicIf the Ionic application is not already created, create a new Ionic Angular application using the following commands:
ionic start ej2-ionic blank --type=angular
cd ej2-ionicOnce the Ionic project is ready, install the Syncfusion Angular Grid package:
npm i @syncfusion/ej2-angular-grids --saveFinally, run the following command line to start the application. The Syncfusion Angular Grid component will be rendered in the ionic framework.
ionic serve