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: packages/cli/templates/react/igr-ts/projects/_base/files/__dot__claude/skills/igniteui-react-components/reference/CHARTS-GRIDS.md
+74-2Lines changed: 74 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ export default function MasterView() {
@@ -120,8 +120,80 @@ export default function MasterView() {
120
120
/* master-view.module.css */
121
121
.grid-lite {
122
122
min-width: 400px;
123
-
min-height: 220px;
123
+
height: 600px;
124
124
flex-grow: 1;
125
125
flex-basis: 0;
126
126
}
127
127
```
128
+
129
+
## Grid Lite Example with Column Configurations and Templates
130
+
131
+
Use `IgrGridLiteColumn` to define columns explicitly with typed `dataType` and optional `cellTemplate` for custom rendering. Set `autoGenerate={false}` (or omit it) when providing explicit columns.
Copy file name to clipboardExpand all lines: packages/cli/templates/react/igr-ts/projects/_base/files/__dot__claude/skills/igniteui-react-components/reference/REFS-FORMS.md
+11-8Lines changed: 11 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,24 +49,27 @@ function MyPage() {
49
49
50
50
## Uncontrolled Components
51
51
52
-
`igniteui-react` Inputsintegrate with the native form handling through Element internals, allowing to take advantage of the native state management adn validation to create intuitive, straight-forward forms:
52
+
`igniteui-react`Form elements like Inputs, Select, Checkbox, etc., integrate with the native form handling through Element internals, allowing to take advantage of the native state management and validation to create intuitive, straightforward forms. Use the `name` attribute to register the field value with `FormData`:
0 commit comments