@syncfusion/ej2-angular-grids 31.2.3 → 31.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +16 -8
- package/package.json +3 -3
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#FB70538` - Resolved an issue where the custom filter for a date column did not function correctly with the AND operator in column filtering.
|
|
10
|
+
- `#I775824` - Fixed a script error that occurred when adding a record with both `virtualization` and a foreign key column enabled.
|
|
11
|
+
|
|
12
|
+
## 31.2.3 (2025-10-22)
|
|
13
|
+
|
|
14
|
+
### Grid
|
|
15
|
+
|
|
16
|
+
#### Bug Fixes
|
|
17
|
+
|
|
9
18
|
- `#I772904` - Resolved an issue causing the selection event to trigger multiple times when saving an editable row with checkbox selection.
|
|
10
19
|
- `#I773677` - Resolved a script error that occurred when opening the filter dialog for `null` type columns.
|
|
11
20
|
- `#I771544` - Fixed an issue that caused a maximum call stack size exceeded error when parsing `stringify` data using `DataUtil.parseJson` method.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Angular Data Grid Component
|
|
2
2
|
|
|
3
|
-
The [Angular Data Grid](https://www.syncfusion.com/angular-ui-components/angular-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm) component is a powerful and flexible tool for displaying and manipulating tabular data. Angular Data Grid component is its ability to bind to a wide range of data sources, including arrays of JSON objects, `OData web services`, and the Syncfusion [DataManager](https://ej2.syncfusion.com/angular/documentation/data/data-binding/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm). This makes it easy to integrate the grid into your application and display data from a variety of sources. In addition to its data binding capabilities, the Angular Data Grid also offers support for features such as sorting, filtering, paging, grouping, editing, frozen rows and columns, virtualization, and more. These features allow you to easily manipulate and present large datasets in an efficient and user-friendly way.
|
|
3
|
+
The [Angular Data Grid](https://www.syncfusion.com/angular-ui-components/angular-grid?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm) component is a powerful and flexible tool for displaying and manipulating tabular data. Angular Data Grid component is its ability to bind to a wide range of data sources, including arrays of JSON objects, `OData web services`, and the Syncfusion<sup>®</sup> [DataManager](https://ej2.syncfusion.com/angular/documentation/data/data-binding/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm). This makes it easy to integrate the grid into your application and display data from a variety of sources. In addition to its data binding capabilities, the Angular Data Grid also offers support for features such as sorting, filtering, paging, grouping, editing, frozen rows and columns, virtualization, and more. These features allow you to easily manipulate and present large datasets in an efficient and user-friendly way.
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
<a href="https://ej2.syncfusion.com/angular/documentation/grid/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm">Getting Started</a> .
|
|
@@ -13,7 +13,7 @@ The [Angular Data Grid](https://www.syncfusion.com/angular-ui-components/angular
|
|
|
13
13
|
<p align="center">
|
|
14
14
|
Trusted by the world's leading companies
|
|
15
15
|
<a href="https://www.syncfusion.com">
|
|
16
|
-
<img src="https://
|
|
16
|
+
<img src="https://ej2.syncfusion.com/home/images/trusted_companies.png" alt="Bootstrap logo">
|
|
17
17
|
</a>
|
|
18
18
|
</p>
|
|
19
19
|
|
|
@@ -34,9 +34,9 @@ ng new my-app
|
|
|
34
34
|
cd my-app
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
### Adding Syncfusion Grid package
|
|
37
|
+
### Adding Syncfusion<sup>®</sup> Grid package
|
|
38
38
|
|
|
39
|
-
All Syncfusion Angular packages are available in [npmjs.com](https://www.npmjs.com/~syncfusionorg). To install the Angular grid package, use the following command.
|
|
39
|
+
All Syncfusion<sup>®</sup> Angular packages are available in [npmjs.com](https://www.npmjs.com/~syncfusionorg). To install the Angular grid package, use the following command.
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
ng add @syncfusion/ej2-angular-grids
|
|
@@ -46,13 +46,13 @@ The above command does the below configuration to your Angular app.
|
|
|
46
46
|
|
|
47
47
|
* Adds `@syncfusion/ej2-angular-grids` package and its peer dependencies to your `package.json` file.
|
|
48
48
|
* Imports the `GridModule` in your application module `app.module.ts`.
|
|
49
|
-
* Registers the Syncfusion UI default theme (material) in the `angular.json` file.
|
|
49
|
+
* Registers the Syncfusion<sup>®</sup> UI default theme (material) in the `angular.json` file.
|
|
50
50
|
|
|
51
|
-
This makes it easy to add the Syncfusion Angular Grids module to your project and start using it in your application.
|
|
51
|
+
This makes it easy to add the Syncfusion<sup>®</sup> Angular Grids module to your project and start using it in your application.
|
|
52
52
|
|
|
53
53
|
### Add Grid component
|
|
54
54
|
|
|
55
|
-
In **src/app/app.component.ts**, use `<ejs-grid>` selector in the `template` attribute of the `@Component` directive to render the Syncfusion Angular Grid component.
|
|
55
|
+
In **src/app/app.component.ts**, use `<ejs-grid>` selector in the `template` attribute of the `@Component` directive to render the Syncfusion<sup>®</sup> Angular Grid component.
|
|
56
56
|
|
|
57
57
|
```typescript
|
|
58
58
|
import { Component, OnInit } from '@angular/core';
|
|
@@ -123,6 +123,14 @@ Grid component is also offered in the following list of frameworks.
|
|
|
123
123
|
* [Accessibility](https://ej2.syncfusion.com/angular/documentation/grid/accessibility/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#wai-aria): Designed to be accessible to users with disabilities, with features such as WAI-ARIA standard compliance and keyboard navigation to ensure that the grid can be effectively used with assistive technologies such as screen readers.
|
|
124
124
|
* [Localization](https://ej2.syncfusion.com/angular/documentation/grid/global-local/?utm_source=npm&utm_medium=listing&utm_campaign=angular-grid-npm#localization): The Localization library enables you to adapt the default text content of the grid to fit the language and cultural preferences of your target audience.
|
|
125
125
|
|
|
126
|
+
## Resources
|
|
127
|
+
|
|
128
|
+
* [Documentation](https://ej2.syncfusion.com/angular/documentation/grid/getting-started)
|
|
129
|
+
* [Theme Studio](https://ej2.syncfusion.com/themestudio/)
|
|
130
|
+
* [What's New](https://www.syncfusion.com/products/whatsnew/angular?utm_medium=listing&utm_source=github)
|
|
131
|
+
* [Road Map](https://www.syncfusion.com/products/roadmap/angular)
|
|
132
|
+
* [E-Books](https://www.syncfusion.com/succinctly-free-ebooks?searchkey=angular&type=all)
|
|
133
|
+
|
|
126
134
|
## Support
|
|
127
135
|
|
|
128
136
|
Product support is available through the following mediums.
|
|
@@ -139,7 +147,7 @@ Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-componen
|
|
|
139
147
|
|
|
140
148
|
## License and copyright
|
|
141
149
|
|
|
142
|
-
> This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for
|
|
150
|
+
> This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 140+ [Angular UI components](https://www.syncfusion.com/angular-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
|
|
143
151
|
|
|
144
152
|
> A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
|
|
145
153
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-grids",
|
|
3
|
-
"version": "31.2.
|
|
3
|
+
"version": "31.2.4",
|
|
4
4
|
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
7
7
|
"schematics": "./schematics/collection.json",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@syncfusion/ej2-base": "~31.2.
|
|
9
|
+
"@syncfusion/ej2-base": "~31.2.4",
|
|
10
10
|
"@syncfusion/ej2-angular-base": "~31.2.2",
|
|
11
|
-
"@syncfusion/ej2-grids": "31.2.
|
|
11
|
+
"@syncfusion/ej2-grids": "31.2.4"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"angular",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-grids';
|
|
4
|
-
exports.pkgVer = '^31.2.
|
|
4
|
+
exports.pkgVer = '^31.2.4';
|
|
5
5
|
exports.moduleName = 'GridModule, PagerModule';
|
|
6
|
-
exports.themeVer = '~31.2.
|
|
6
|
+
exports.themeVer = '~31.2.4';
|