Skip to content

Commit 9aa344f

Browse files
Update readme files
1 parent 2ed1a41 commit 9aa344f

File tree

6 files changed

+53
-14
lines changed

6 files changed

+53
-14
lines changed

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
[![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T945799)
44
[![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183)
55
<!-- default badges end -->
6-
# Getting Started with DevExtreme DropDownButton
6+
# DevExtreme DropDownButton - Getting Started
77

8-
This repository stores the source code for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial.
8+
This repository stores the code examples of the DropDownButton component for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial. The DropDownButton combines the functionality of a button and a drop-down menu. This tutorial describes how to configure a DropDownButton that logs user clicks in the browser console.
9+
10+
<div align="center"><img src="./dropdownbutton.png" /></div>
11+
12+
## Files to Review
13+
14+
- **Angular**
15+
- [app.component.html](angular/src/app/app.component.html)
16+
- [app.component.ts](angular/src/app/app.component.ts)
17+
- **jQuery**
18+
- [index.js](jquery/src/index.js)
19+
- **React**
20+
- [App.js](react/src/App.js)
21+
- **Vue**
22+
- [App.vue](vue/src/App.vue)
23+
24+
## Documentation
25+
26+
- [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/)
27+
28+
- [DropDownButton - API Reference](https://js.devexpress.com/Documentation/ApiReference/UI_Components/dxDropDownButton/)

angular/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Getting Started with DevExtreme Angular DropDownButton
1+
# DevExtreme Angular DropDownButton - Getting Started
22

3-
This repository stores Angular source code for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial.
3+
This repository stores the code examples of the Angular DropDownButton component for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial. The DropDownButton combines the functionality of a button and a drop-down menu. This tutorial describes how to configure a DropDownButton that logs user clicks in the browser console.
44

55
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 10.2.0.
66

@@ -18,12 +18,12 @@ Run `ng build` to build the project. The build artifacts will be stored in the `
1818

1919
## Running unit tests
2020

21-
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
21+
Run `ng test` to execute unit tests using [Karma](https://karma-runner.github.io).
2222

2323
## Running end-to-end tests
2424

25-
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
25+
Run `ng e2e` to execute end-to-end tests using [Protractor](http://www.protractortest.org/).
2626

2727
## Further help
2828

29-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
29+
To get more help on the Angular CLI, use `ng help` or review the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.

dropdownbutton.png

5.89 KB
Loading

jquery/README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
1-
# Getting Started with DevExtreme jQuery DropDownButton
1+
# DevExtreme jQuery DropDownButton - Getting Started
22

3-
This repository stores jQuery source code for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial.
3+
This repository stores the code examples of the jQuery DropDownButton component for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial. The DropDownButton combines the functionality of a button and a drop-down menu. This tutorial describes how to configure a DropDownButton that logs user clicks in the browser console.
44

5-
To launch the project, open `index.html` with your browser.
5+
## Installation
6+
7+
Download the example and use NPM to install required libraries.
8+
9+
```
10+
npm install
11+
```
12+
13+
## Development server
14+
15+
Run the `npm run start` command to run the development server. Use the following link to check the example:
16+
```
17+
http://localhost:3000/src/index.html
18+
```
19+
20+
## Further help
21+
22+
You can learn more about jQuery API in the [jQuery documentation](https://api.jquery.com/).
23+
24+
To get more help on DevExtreme, submit an issue on [GitHub](https://github.com/DevExpress/devextreme/issues) or [Support Center](https://www.devexpress.com/Support/Center/Question/Create).

react/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Getting Started with DevExtreme React DropDownButton
1+
# DevExtreme React DropDownButton - Getting Started
22

3-
This repository stores React source code for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial.
3+
This repository stores the code examples of the React DropDownButton component for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial. The DropDownButton combines the functionality of a button and a drop-down menu. This tutorial describes how to configure a DropDownButton that logs user clicks in the browser console.
44

55
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
66

vue/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Getting Started with DevExtreme Vue DropDownButton
1+
# DevExtreme Vue DropDownButton - Getting Started
22

3-
This repository stores Vue source code for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial.
3+
This repository stores the code examples of the Vue DropDownButton component for the [Getting Started with DropDownButton](https://js.devexpress.com/Documentation/Guide/UI_Components/DropDownButton/Getting_Started_with_DropDownButton/) tutorial. The DropDownButton combines the functionality of a button and a drop-down menu. This tutorial describes how to configure a DropDownButton that logs user clicks in the browser console.
44

55
## Project setup
66
```

0 commit comments

Comments
 (0)