Skip to content

DataGrid Context Menu CRUD Operations: Add the jQuery 24.2 example. #5

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

Open
wants to merge 2 commits into
base: 19.2.11+
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<!-- default badges list -->
![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/128583131/19.2.11%2B)
[![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T123309)
[![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183)
[![](https://img.shields.io/badge/💬_Leave_Feedback-feecdd?style=flat-square)](#does-this-example-address-your-development-requirementsobjectives)
Expand Down
1 change: 1 addition & 0 deletions jQuery/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/*
21 changes: 21 additions & 0 deletions jQuery/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
root: true,
extends: ['devextreme/spell-check'],
overrides: [{
files: ['*.js'],
extends: ['devextreme/jquery'],
env: {
jquery: true,
},
parser: '@babel/eslint-parser',
parserOptions: {
'sourceType': 'module',
'ecmaVersion': 2018,
'requireConfigFile': false,
},
globals: {
System: true,
DevExpress: true,
},
}],
};
3 changes: 3 additions & 0 deletions jQuery/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.js
*.css
.github
6 changes: 6 additions & 0 deletions jQuery/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"tabWidth": 2,
"htmlWhitespaceSensitivity": "strict",
"printWidth": 200,
"overrides": []
}
Empty file added jQuery/.stylelintignore
Empty file.
3 changes: 3 additions & 0 deletions jQuery/.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "eslint-config-devextreme/stylelintrc"
}
5 changes: 5 additions & 0 deletions jQuery/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
30 changes: 30 additions & 0 deletions jQuery/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# jQuery

## Installation

Download the example and use NPM to install required libraries.

```
npm install
```

## Code

Take a look at the following files of this example to see the required code:

Your files go here

## Development server

Run the `npm run start` command to run the development server. Use the following link to check the example:
```
http://localhost:3000/src/index.html
```

## Further help

You can learn more about jQuery API in the [jQuery documentation](https://api.jquery.com/).

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)


5 changes: 5 additions & 0 deletions jQuery/bs-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"port": 5050,
"startPath": "src/index.html",
"files": ["./src/**/*.{html,css,js}"]
}
Binary file added jQuery/favicon.ico
Binary file not shown.
21 changes: 0 additions & 21 deletions jQuery/index.html

This file was deleted.

Loading