Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 84f3e5d

Browse files
authored
Committed the example project.
0 parents  commit 84f3e5d

16 files changed

+349
-0
lines changed

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Cell and Checkbox Selection with Vue Grid Rows
2+
3+
A quick-start project that helps you to perform different types of selection in Vue Grid and know about different modes of selection – Row, Cell and Both. This project contains code snippet about cell, checkbox and toggle selection, and the way to get row index of selected cells using row selection events.
4+
5+
Documentation: https://ej2.syncfusion.com/vue/documentation/grid/selection/
6+
7+
Online examples: https://ej2.syncfusion.com/vue/demos/#/material/grid/selection.html
8+
9+
## Project prerequisites
10+
11+
Make sure that you have compatible versions of Node and Vue CLI in your machine before
12+
starting to work on this project.
13+
14+
## How to run this application
15+
16+
To run this application, you need to first clone the `cell-and-checkbox-selection-with-vue-grid-rows` repository and then navigate to the path where it is located in your system.
17+
18+
To do so, open the command prompt and run the following commands one after the other.
19+
20+
```
21+
git clone https://github.com/SyncfusionExamples/cell-and-checkbox-selection-with-vue-grid-rows grid-example
22+
cd grid-example
23+
```
24+
25+
## Installation
26+
27+
After downloading, you need to install the packages required to run this application locally. To do so,
28+
run the following command:
29+
30+
```
31+
npm install
32+
```
33+
This will install all the needed Vue packages into your current project.
34+
35+
## Running on development server
36+
37+
Run the `npm run serve` command for a dev server. Navigate to `http://localhost:8080/`. The app will automatically reload if you change any of the source files.
38+
39+
## Further help
40+
41+
To get more help on Vue CLI use, check the [Vue-Cli README] (https://github.com/vuejs/vue-cli/blob/master/README.md).

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

dist/css/app.41f54dae.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import url(https://cdn.syncfusion.com/ej2/material.css);

dist/favicon.ico

4.19 KB
Binary file not shown.

dist/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>vue-grid</title><link href=/css/app.41f54dae.css rel=preload as=style><link href=/js/app.fc0758c2.js rel=preload as=script><link href=/js/chunk-vendors.0e95ec2d.js rel=preload as=script><link href=/css/app.41f54dae.css rel=stylesheet></head><body><noscript><strong>We're sorry but vue-grid doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.0e95ec2d.js></script><script src=/js/app.fc0758c2.js></script></body></html>

dist/js/app.fc0758c2.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/app.fc0758c2.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/chunk-vendors.0e95ec2d.js

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/chunk-vendors.0e95ec2d.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "vue-grid",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"lint": "vue-cli-service lint"
9+
},
10+
"dependencies": {
11+
"@syncfusion/ej2-vue-dropdowns": "^17.4.39",
12+
"@syncfusion/ej2-vue-grids": "^17.3.28",
13+
"@syncfusion/ej2-vue-inputs": "^17.3.28",
14+
"core-js": "^3.3.2",
15+
"serve": "^11.2.0",
16+
"vue": "^2.6.10"
17+
},
18+
"devDependencies": {
19+
"@vue/cli-plugin-babel": "^4.0.0",
20+
"@vue/cli-plugin-eslint": "^4.0.0",
21+
"@vue/cli-service": "^4.0.0",
22+
"babel-eslint": "^10.0.3",
23+
"eslint": "^5.16.0",
24+
"eslint-plugin-vue": "^5.0.0",
25+
"vue-template-compiler": "^2.6.10"
26+
},
27+
"eslintConfig": {
28+
"root": true,
29+
"env": {
30+
"node": true
31+
},
32+
"extends": [
33+
"plugin:vue/essential",
34+
"eslint:recommended"
35+
],
36+
"rules": {},
37+
"parserOptions": {
38+
"parser": "babel-eslint"
39+
}
40+
},
41+
"postcss": {
42+
"plugins": {
43+
"autoprefixer": {}
44+
}
45+
},
46+
"browserslist": [
47+
"> 1%",
48+
"last 2 versions"
49+
]
50+
}

0 commit comments

Comments
 (0)