Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): Don't use relative links in the package root readme.md #91

Merged
merged 1 commit into from
May 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/dx-react-demos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ To run demos locally, follow next steps:

For more information about components used in these demo cases follow the link:

[DevExtreme for React](../../README.md#devextreme-for-react)
[DevExtreme for React](https://devexpress.github.io/devextreme-reactive/react/)

## License

[DevExtreme licensing](https://js.devexpress.com/licensing/).
[DevExtreme licensing](https://js.devexpress.com/licensing/).
22 changes: 11 additions & 11 deletions packages/dx-react-grid-bootstrap3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,31 +30,31 @@ export const App = () => (
);
```

Make sure that Bootstrap styles are linked to the page. If you have not yet configured Bootstrap for your project, check the following link: http://getbootstrap.com/getting-started/#download.
Make sure that Bootstrap styles are linked to the page. If you have not yet configured Bootstrap for your project, check the [following link](http://getbootstrap.com/getting-started/#download).

## Getting started

This package provides templates implementing Bootstrap 3 rendering for the React Grid UI plugins and the UI Plugins with injected templates as well. For your convenience, these templates can be used instead of the ones contained in the original React Grid repository.

See [demos](../dx-react-demos/README.md) for more information.
See [demos](https://devexpress.github.io/devextreme-reactive/react/grid/demos/) for more information.

## Reference

The package exposes plugins with injected templates. Here is the list of the plugins:

- [TableView](../dx-react-grid/docs/reference/table-view.md)
- [TableHeaderRow](../dx-react-grid/docs/reference/table-header-row.md)
- [TableSelection](../dx-react-grid/docs/reference/table-selection.md)
- [TableFilterRow](../dx-react-grid/docs/reference/table-filter-row.md)
- [TableRowDetail](../dx-react-grid/docs/reference/table-row-detail.md)
- [TableGroupRow](../dx-react-grid/docs/reference/table-group-row.md)
- [GroupingPanel](../dx-react-grid/docs/reference/grouping-panel.md)
- [PagingPanel](../dx-react-grid/docs/reference/paging-panel.md)
- [TableView](https://devexpress.github.io/devextreme-reactive/react/grid/docs/reference/table-view/)
- [TableHeaderRow](https://devexpress.github.io/devextreme-reactive/react/grid/docs/reference/table-header-row/)
- [TableSelection](https://devexpress.github.io/devextreme-reactive/react/grid/docs/reference/table-selection/)
- [TableFilterRow](https://devexpress.github.io/devextreme-reactive/react/grid/docs/reference/table-filter-row/)
- [TableRowDetail](https://devexpress.github.io/devextreme-reactive/react/grid/docs/reference/table-row-detail/)
- [TableGroupRow](https://devexpress.github.io/devextreme-reactive/react/grid/docs/reference/table-group-row/)
- [GroupingPanel](https://devexpress.github.io/devextreme-reactive/react/grid/docs/reference/grouping-panel/)
- [PagingPanel](https://devexpress.github.io/devextreme-reactive/react/grid/docs/reference/paging-panel/)

Each plugin has properties with the 'Template' postfix. Components passed to such properties are templates.

Templates can be overridden by passing your own component or rendering function. If you want to render a UI item with a built-in template, you can return `undefined` from your custom template.

## License

[DevExtreme licensing](https://js.devexpress.com/licensing/).
[DevExtreme licensing](https://js.devexpress.com/licensing/).
4 changes: 2 additions & 2 deletions packages/dx-react-grid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ const App = () => (

## Documentation

[React Grid Documentation](docs)
[React Grid Documentation](https://devexpress.github.io/devextreme-reactive/react/grid/docs/)

## License

[DevExtreme licensing](https://js.devexpress.com/licensing/).
[DevExtreme licensing](https://js.devexpress.com/licensing/).
2 changes: 1 addition & 1 deletion packages/dx-react-grid/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ All the Grid functionality is provided by plugins. We can divide all the plugins

Note that the plugins are composable and can technically be nested into each other.

Refer to the [Reference](#reference) to see the complete plugin list.
Refer to the [Reference](reference) to see the complete plugin list.

### Plugin Order

Expand Down