Skip to content

Commit 499824a

Browse files
author
Seth Lemmons
committed
additional README updates
1 parent 09c0f68 commit 499824a

File tree

85 files changed

+176
-669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+176
-669
lines changed

10-grid-features/a-controlling-cell-data/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# a-controlling-cell-data
84

9-
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the
10-
grid component. The "email" column is configured with a cell renderer function
11-
that returns the e-mail value from the data source as a clickable `mailto` link.
5+
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the grid component. The "email" column is configured with a cell renderer function that returns the e-mail value from the data source as a clickable `mailto` link.
126

137
*Make sure you have npm installed.*
148

10-grid-features/b-column-locking/README.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# b-column-locking
84

9-
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the
10-
grid component. The "name" column is configured with `pinned: 'left'` to lock
11-
it in place when scrolling to the right. One or more columns can be pinned on
12-
the left or right-hand side of the grid.
5+
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the grid component. The "name" column is configured with `pinned: 'left'` to lock it in place when scrolling to the right. One or more columns can be pinned on the left or right-hand side of the grid.
136

147
*Make sure you have npm installed.*
158

@@ -20,8 +13,7 @@ $ npm install
2013
$ npm start
2114
```
2215

23-
A browser window will automatically open and will load the app. Scroll to the
24-
right to see the name grid locked in position.
16+
A browser window will automatically open and will load the app. Scroll to the right to see the name grid locked in position.
2517

2618

2719
# Create React App README

10-grid-features/c-cell-editing/README.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# c-cell-editing
84

9-
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the
10-
grid component. The "name" column is configured with `editable: true`.
11-
Double-clicking a cell in the name column will show an editor text field in
12-
order to modify the cell value.
5+
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the grid component. The "name" column is configured with `editable: true`. Double-clicking a cell in the name column will show an editor text field in order to modify the cell value.
136

147
*Make sure you have npm installed.*
158

@@ -20,8 +13,7 @@ $ npm install
2013
$ npm start
2114
```
2215

23-
A browser window will automatically open and will load the app. Double-click on
24-
a cell in the "name" column to see the editor in action.
16+
A browser window will automatically open and will load the app. Double-click on a cell in the "name" column to see the editor in action.
2517

2618

2719
# Create React App README

10-grid-features/d-custom-editor/README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# d-custom-editor
84

9-
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the
10-
grid component. The "name" column is configured with `editable: true`. The
11-
"email" column is configured as editable as well. However, it is configured
12-
with a custom editor field from `src/CustomEditor.js`. The `CustomEditor`
13-
returns an input field with `type="email"`. Double-clicking a cell in the name
14-
or email column will show an editor text field in order to modify the cell
15-
value.
5+
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the grid component. The "name" column is configured with `editable: true`. The "email" column is configured as editable as well. However, it is configured with a custom editor field from `src/CustomEditor.js`. The `CustomEditor` returns an input field with `type="email"`. Double-clicking a cell in the name or email column will show an editor text field in order to modify the cell value.
166

177
*Make sure you have npm installed.*
188

@@ -23,9 +13,7 @@ $ npm install
2313
$ npm start
2414
```
2515

26-
A browser window will automatically open and will load the app. Double-click on
27-
a cell in the "name" column to see the standard editor in action. Double-click
28-
a cell in the "email" column to show the custom editor field.
16+
A browser window will automatically open and will load the app. Double-click on a cell in the "name" column to see the standard editor in action. Double-click a cell in the "email" column to show the custom editor field.
2917

3018

3119
# Create React App README

10-grid-features/e-infinite-scrolling/README.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# e-infinite-scrolling
84

9-
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the
10-
grid component. The grid is configured with `rowModelType="infinite"` so that
11-
as the user scrolls to the bottom of the grid, additional pages of data are
12-
requested.
5+
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the grid component. The grid is configured with `rowModelType="infinite"` so that as the user scrolls to the bottom of the grid, additional pages of data are requested.
136

147
*Make sure you have npm installed.*
158

@@ -20,9 +13,7 @@ $ npm install
2013
$ npm start
2114
```
2215

23-
A browser window will automatically open and will load the app. Scroll to the
24-
bottom of the grid's scrollable area to see an additional dataset loaded to the
25-
grid.
16+
A browser window will automatically open and will load the app. Scroll to the bottom of the grid's scrollable area to see an additional dataset loaded to the grid.
2617

2718

2819
# Create React App README

11-tree/a-basic-tree/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# a-basic-tree
84

9-
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the
10-
tree component. The tree component renders hierarchal data similar to the tree
11-
component in Ext JS.
5+
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the tree component. The tree component renders hierarchal data similar to the tree component in Ext JS.
126

137
**Note: The tree component is a paid feature of ag-Grid**
148

11-tree/b-advanced-tree/README.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# b-advanced-tree
84

9-
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the
10-
tree component. The hierarchal tree data is rendered in the "Organisational
11-
Hierarchy" column with associated data shown in three additional columns similar
12-
to the tree grid view in Ext JS.
5+
This project uses [ag-Grid](https://www.npmjs.com/package/ag-grid-react) as the tree component. The hierarchal tree data is rendered in the "Organisational Hierarchy" column with associated data shown in three additional columns similar to the tree grid view in Ext JS.
136

14-
The tree is configured with several advanced features including cell editing and
15-
column locking / pinning.
7+
The tree is configured with several advanced features including cell editing and column locking / pinning.
168

179
**Note: The tree component is a paid feature of ag-Grid**
1810

@@ -25,9 +17,7 @@ $ npm install
2517
$ npm start
2618
```
2719

28-
A browser window will automatically open and will load the app. Double-click a
29-
cell in the tree column to show the editor text field. Scroll the view to the
30-
right to see the first column locked in place.
20+
A browser window will automatically open and will load the app. Double-click a cell in the tree column to show the editor text field. Scroll the view to the right to see the first column locked in place.
3121

3222

3323
# Create React App README

12-form-fields/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In the following examples we show how to create various form fields from Ext JS
1717

1818
### Related Blog Article
1919

20-
[Ext JS to React: Form Fields](TBD)
20+
[Ext JS to React: Form Fields](https://moduscreate.com/blog/ext-js-react-form-fields/)
2121

2222

2323

12-form-fields/a-input/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# a-input
84

9-
This project creates a simple text field for use in a React application. Input
10-
fields themselves are very straightforward since they are just HTML5 input
11-
elements with content-specific attributes.
5+
This project creates a simple text field for use in a React application. Input fields themselves are very straightforward since they are just HTML5 input elements with content-specific attributes.
126

137
*Make sure you have npm installed.*
148

12-form-fields/b-textarea/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# b-textarea
84

9-
This project creates a simple textarea field for use in a React application.
10-
Textareas themselves are very straightforward since they are just textarea
11-
elements.
5+
This project creates a simple textarea field for use in a React application. Textareas themselves are very straightforward since they are just textarea elements.
126

137
*Make sure you have npm installed.*
148

12-form-fields/c-select/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# c-select
84

9-
This project creates a simple select / option field for use in a React
10-
application.
5+
This project creates a simple select / option field for use in a React application.
116

127
*Make sure you have npm installed.*
138

12-form-fields/d-combo/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# d-combo
84

9-
This project creates a datalist component similar to the combobox control from
10-
Ext JS.
5+
This project creates a datalist component similar to the combobox control from Ext JS.
116

127
*Make sure you have npm installed.*
138

12-form-fields/e-range-slider/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# e-range-slider
84

9-
This project creates a slider control using an input field of type
10-
`type="range"`.
5+
This project creates a slider control using an input field of type `type="range"`.
116

127
*Make sure you have npm installed.*
138

12-form-fields/f-datefield/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# f-datefield
84

9-
This project creates a slider control using an input field of type
10-
`type="data"`.
5+
This project creates a slider control using an input field of type `type="data"`.
116

127
*Make sure you have npm installed.*
138

12-form-fields/g-number-spinner/README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# g-number-spinner
84

9-
This project creates a slider control using an input field of type
10-
`type="number"`.
5+
This project creates a slider control using an input field of type `type="number"`.
116

127
*Make sure you have npm installed.*
138

12-form-fields/h-radio/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# h-radio
84

9-
This project creates a form with three radio fields defined in `src/Radio.js`.
10-
The `Radio` fields are controlled fields with their checked state coming from
11-
the component state property.
5+
This project creates a form with three radio fields defined in `src/Radio.js`. The `Radio` fields are controlled fields with their checked state coming from the component state property.
126

137
*Make sure you have npm installed.*
148

12-form-fields/i-checkbox/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# i-checkbox
84

9-
This project creates a form with two checkbox fields defined in
10-
`src/Checkbox.js`. The `Checkbox` fields are controlled fields with their
11-
checked state coming from the component state property.
5+
This project creates a form with two checkbox fields defined in `src/Checkbox.js`. The `Checkbox` fields are controlled fields with their checked state coming from the component state property.
126

137
*Make sure you have npm installed.*
148

12-form-fields/j-toggle/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
This project was generated as a sample React application using
2-
[create-react-app](https://www.npmjs.com/package/create-react-app) as described
3-
in the
4-
[Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog
5-
post.
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
62

73
# j-toggle
84

9-
This project creates a `Toggle` component from `src/Toggle.js`. The `Toggle`
10-
field is effectively a checkbox styled to look like a toggle switch. The
11-
styling for the `Toggle` field is imported from `src/Toggle.css`.
5+
This project creates a `Toggle` component from `src/Toggle.js`. The `Toggle` field is effectively a checkbox styled to look like a toggle switch. The styling for the `Toggle` field is imported from `src/Toggle.css`.
126

137
*Make sure you have npm installed.*
148

13-form-validation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ In the following example we explore how to validate form fields within a React f
88

99
### Related Blog Article
1010

11-
v
11+
[Ext JS to React: Form Validation](https://moduscreate.com/blog/ext-js-react-form-validations/)
1212

0 commit comments

Comments
 (0)