Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit c94091d

Browse files
Update Grid-Menu.md
1 parent b192290 commit c94091d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/grid-functionalities/Grid-Menu.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,18 +142,18 @@ export class GridDemoComponent {
142142
143143
### Grid State Event
144144
There are 2 ways of subscribing to GridState Service event changed.
145-
1. Through `(onGridStateServiceChanged)` Event Emitter (recommended)
145+
1. Through `(onGridStateChanged)` Event Emitter (recommended)
146146
2. Through `onGridStateChanged` Observable on the GridState Service.
147147

148148
Examples
149-
#### 1. `(onGridStateServiceChanged)` Event Emitter (recommended)
149+
#### 1. `(onGridStateChanged)` Event Emitter (recommended)
150150
##### View
151151
```html
152152
<angular-slickgrid gridId="grid1"
153153
[columnDefinitions]="columnDefinitions"
154154
[gridOptions]="gridOptions"
155155
[dataset]="dataset"
156-
(onGridStateServiceChanged)="gridStateChanged($event)">
156+
(onGridStateChanged)="gridStateChanged($event)">
157157
</angular-slickgrid>
158158
```
159159
##### Component
@@ -242,4 +242,4 @@ this.gridOptions = {
242242
}
243243
};
244244
```
245-
You could technically redefine by hand the complete list of `columns` that the `presets` requires. I would personally do it via the Column Definitions looping with `map()`, but go manual is also perfectly fine. You would just re-declare the `columns` again with the `id` and `width` and that would work as well.
245+
You could technically redefine by hand the complete list of `columns` that the `presets` requires. I would personally do it via the Column Definitions looping with `map()`, but go manual is also perfectly fine. You would just re-declare the `columns` again with the `id` and `width` and that would work as well.

0 commit comments

Comments
 (0)