You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ export class IgxCustomFilteringOperand extends IgxFilteringOperand {
50
50
}
51
51
```
52
52
53
-
-`igxGrid` now supports grouping of columns enabling users to create critera for organizing data records. To explore the functionality start off by setting some columns as `groupable`:
53
+
-`igxGrid` now supports grouping of columns enabling users to create criteria for organizing data records. To explore the functionality start off by setting some columns as `groupable`:
54
54
```html
55
55
<igx-grid[data]="data">
56
56
<igx-column[field]="'ProductName'"></igx-column>
@@ -97,7 +97,7 @@ export class IgxCustomFilteringOperand extends IgxFilteringOperand {
97
97
- Custom values
98
98
- Templates
99
99
- Integration with Template Driven and Reactive Forms
100
-
- Keayboard Navigation
100
+
- Keyboard Navigation
101
101
- Accessibility compliance
102
102
103
103
For more detailed information see the [official igxCombo documentation](https://www.infragistics.com/products/ignite-ui-angular/angular/components/combo.html).
@@ -119,7 +119,7 @@ export class IgxCustomFilteringOperand extends IgxFilteringOperand {
119
119
120
120
- Single Selection
121
121
- Grouping
122
-
- Keayboard Navigation
122
+
- Keyboard Navigation
123
123
- Accessibility compliance
124
124
125
125
- `igxChip` and `igxChipsArea` components added
@@ -149,7 +149,7 @@ export class IgxCustomFilteringOperand extends IgxFilteringOperand {
149
149
- `collapsed` now read-only, markup input is removed.
150
150
- `onOpen` event renamed to `onOpened`.
151
151
- `onClose` event renamed to `onClosed`.
152
-
- **Breaking change** All properties that were named `isDisabled` have been renamed to `disabled` in order to acheive consistency across our component suite. This affects: date-picker, input directive, input-group, dropdown-item, tabbar and time-picker.
152
+
- **Breaking change** All properties that were named `isDisabled` have been renamed to `disabled` in order to achieve consistency across our component suite. This affects: date-picker, input directive, input-group, dropdown-item, tabbar and time-picker.
153
153
- The **deprecated** `igxForRemote` input for the `igxFor` directive is now removed. Setting the required `totalItemCount` property after receiving the first data chunk is enough to trigger the required functionality.
154
154
155
155
## 6.0.4
@@ -280,7 +280,7 @@ export class IgxCustomFilteringOperand extends IgxFilteringOperand {
280
280
- `igxForOf` is now available as an alternative to `ngForOf` for templating large amounts of data. The `igxForOf` uses virtualization technology behind the scenes to optimize DOM rendering and memory consumption. Virtualization technology works similar to Paging by slicing the data into smaller chucks which are swapped from a container viewport while the user scrolls the data horizontally/vertically. The difference with the Paging is that virtualization mimics the natural behavior of the scrollbar.
281
281
- `igxToggle` and `igxToggleAction` directives added
282
282
- `igxToggle` allows users to implement toggleable components/views (eg. dropdowns), while `igxToggleAction` can control the
283
-
`igxToggle` directive. Refer to the official documenation for more information.
283
+
`igxToggle` directive. Refer to the official documentation for more information.
284
284
- `igxToggle` requires `BrowserAnimationsModule` to be imported in your application.
285
285
- [`Ignite UI for Angular Theming`](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes.html) - comprehensive set of **Sass** functions and mixins will give the ability to easily style your entire application or only certain parts of it.
286
286
- Previously bundled fonts, are now listed as external dependencies. You should supply both the [Material Icons](http://google.github.io/material-design-icons/) and [Titillium Web](https://fonts.google.com/selection?selection.family=Titillium+Web:300,400,600,700) fonts yourself by either hosting or using CDN.
@@ -308,12 +308,12 @@ export class IgxCustomFilteringOperand extends IgxFilteringOperand {
308
308
- The grid filtering UI dropdowns are now controlled by the `igxToggle` directive.
309
309
- Make sure to import `BrowserAnimationsModule` inside your application module as `igxToggle` uses animations for state transition.
310
310
- `state` input
311
-
- filtering expressions and sortin expressions provided
311
+
- filtering expressions and sorting expressions provided
312
312
- Removed `onCellSelection` and `onRowSelection` event emitters, `onSelection` added instead.
Copy file name to clipboardExpand all lines: projects/igniteui-angular/src/lib/combo/README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ The igx-combo component provides a powerful input, combining the features of the
3
3
The combo component provides easy filtering and selection of multiple items, grouping and adding custom values to the dropdown list.
4
4
Custom templates could be provided in order to customize different areas of the components, such as items, header, footer, etc.
5
5
The combo component is integrated with the Template Driven and Reactive Forms.
6
-
The igx-combo exposes intiutive keyboard navigation and it is accessibility compliant.
6
+
The igx-combo exposes intuitive keyboard navigation and it is accessibility compliant.
7
7
Drop Down items are virtualized, which guarantees smooth work, even if the igx-combo is bound to data source with a lot of items.
8
8
9
9
@@ -46,7 +46,7 @@ public dataLoading(evt) {
46
46
}
47
47
```
48
48
49
-
> Note: In order to have combo with remote data, what you need is to have a service that retrives data chunks from a server.
49
+
> Note: In order to have combo with remote data, what you need is to have a service that retrieves data chunks from a server.
50
50
What the combo exposes is a `virtualizationState` property that gives state of the combo - first index and the number of items that needs to be loaded.
51
51
The service, should inform the combo for the total items that are on the server - using the `totalItemCount` property.
52
52
@@ -113,7 +113,7 @@ Defining a combo's groupKey option will group the items, according to that key.
113
113
114
114
### Templates
115
115
Templates for different parts of the control can be defined, including items, header and footer, etc.
116
-
When defining one of the them, you need to reference list of predifined names, as follows:
116
+
When defining one of the them, you need to reference list of predefined names, as follows:
117
117
118
118
#### Defining item template:
119
119
```html
@@ -180,7 +180,7 @@ When igxCombo is opened and search input is focused:
180
180
-`ArrowDown` will move focus from the search input to the first list item.If list is empty and custom values are enabled will move it to the Add new item button.
181
181
> Note: Any other key stroke will be handled by the input.
182
182
183
-
When igxCombo is opened and list item is focued:
183
+
When igxCombo is opened and list item is focused:
184
184
-`ArrowDown` will move to next list item. If the active item is the last one in hte list and custom values are enabled then focus will be moved to the Add item button.
185
185
186
186
-`ArrowUp` will move to previous list item. If the active item is the first one in the list then focus will be moved back to the search input.
@@ -213,7 +213,7 @@ When igxCombo is opened allow custom values are enabled and add item button is f
213
213
|`value`| combo value | string |
214
214
|`allowCustomValue`| enable/disables combo custom value | boolean |
215
215
|`valueKey`| combo value data source property | string |
216
-
|`displayKey`| combo dispaly data source property | string |
216
+
|`displayKey`| combo display data source property | string |
217
217
|`groupKey`| combo item group | string |
218
218
|`virtualizationState`| defines the current state of the virtualized data. It contains `startIndex` and `chunkSize`|`IForOfState`|
219
219
|`totalItemCount`| total count of the virtual data items, when using remote service | number |
0 commit comments