This commit is contained in:
2026-02-06 18:34:35 +08:00
commit f7f4c94c00
3285 changed files with 563208 additions and 0 deletions

View File

@@ -0,0 +1,172 @@
<template>
<div>
<JqxGrid ref="myGrid" @contextmenu="myGridOnContextMenu()" @rowclick="myGridOnRowClick($event)"
:width="getWidth" :source="dataAdapter" :pageable="true"
:autoheight="true" :columns="columns">
</JqxGrid>
<div style="margin-top: 30px">
<div id="cellbegineditevent"></div>
<div style="margin-top: 10px" id="cellendeditevent"></div>
</div>
<JqxWindow ref="myWindow"
:width="250" :height="230" :modalOpacity="'0.01'"
:resizable="false" :isModal="true" :autoOpen="false">
<div>Edit</div>
<div style="overflow: hidden">
<table>
<tbody>
<tr>
<td align="right">First Name:</td>
<td align="left"><JqxInput ref="firstName" :width="150" :height="23"></JqxInput></td>
</tr>
<tr>
<td align="right">Last Name:</td>
<td align="left"><JqxInput ref="lastName" :width="150" :height="23"></JqxInput></td>
</tr>
<tr>
<td align="right">Product:</td>
<td align="left"><JqxInput ref="product" :width="150" :height="23"></JqxInput></td>
</tr>
<tr>
<td align="right">Quantity:</td>
<td align="left">
<JqxNumberInput ref="quantity"
:width="150" :height="23" :decimalDigits="0" :spinButtons="true">
</JqxNumberInput>
</td>
</tr>
<tr>
<td align="right">Price:</td>
<td align="left">
<JqxNumberInput ref="price"
:width="150" :height="23" :symbol="'$'" :spinButtons="true">
</JqxNumberInput>
</td>
</tr>
<tr>
<td align="right"></td>
<td style="padding-top: 10px" align="right">
<JqxButton ref="SaveBtn" style="margin-right: 5px; float: left" @click="saveBtnOnClick()">Save</JqxButton>
<JqxButton ref="CancelBtn" style="float: left" @click="cancelBtnOnClick()">Cancel</JqxButton>
</td>
</tr>
</tbody>
</table>
</div>
</JqxWindow>
<JqxMenu ref="myMenu" @itemclick="myMenuOnItemClick($event)"
:width="200" :height="58" :mode="'popup'" :autoOpenPopup="false">
<ul>
<li>Edit Selected Row</li>
<li>Delete Selected Row</li>
</ul>
</JqxMenu>
</div>
</template>
<script>
import JqxGrid from "jqwidgets-scripts/jqwidgets-vue/vue_jqxgrid.vue";
import JqxWindow from "jqwidgets-scripts/jqwidgets-vue/vue_jqxwindow.vue";
import JqxInput from "jqwidgets-scripts/jqwidgets-vue/vue_jqxinput.vue";
import JqxNumberInput from "jqwidgets-scripts/jqwidgets-vue/vue_jqxnumberinput.vue";
import JqxButton from "jqwidgets-scripts/jqwidgets-vue/vue_jqxbuttons.vue";
import JqxMenu from "jqwidgets-scripts/jqwidgets-vue/vue_jqxmenu.vue";
export default {
components: {
JqxGrid,
JqxWindow,
JqxInput,
JqxNumberInput,
JqxButton,
JqxMenu
},
data: function () {
return {
getWidth: '90%',
dataAdapter: new jqx.dataAdapter(this.source),
columns: [
{ text: 'First Name', datafield: 'firstname', width: 200 },
{ text: 'Last Name', datafield: 'lastname', width: 200 },
{ text: 'Product', datafield: 'productname', width: 190 },
{ text: 'Quantity', datafield: 'quantity', width: 90, cellsalign: 'right' },
{ text: 'Price', datafield: 'price', cellsalign: 'right', cellsformat: 'c2' }
]
}
},
beforeCreate: function () {
this.source = {
localdata: generatedata(25, false),
datatype: 'array',
datafields:
[
{ name: 'firstname', type: 'string' },
{ name: 'lastname', type: 'string' },
{ name: 'productname', type: 'string' },
{ name: 'quantity', type: 'number' },
{ name: 'price', type: 'number' }
]
}
this.editrow = -1;
},
mounted: function () {
document.addEventListener('contextmenu', event => event.preventDefault());
},
methods: {
myGridOnContextMenu: function () {
return false;
},
myGridOnRowClick: function (event) {
if (event.args.rightclick) {
this.$refs.myGrid.selectrow(event.args.rowindex);
let scrollTop = window.scrollY;
let scrollLeft = window.scrollX;
this.$refs.myMenu.open(parseInt(event.args.originalEvent.clientX) + 5 + scrollLeft, parseInt(event.args.originalEvent.clientY) + 5 + scrollTop);
return false;
}
},
myMenuOnItemClick: function (event) {
let args = event.args;
let rowindex = this.$refs.myGrid.getselectedrowindex();
if (args.innerHTML == 'Edit Selected Row') {
this.editrow = rowindex;
this.$refs.myWindow.position = { x: 60, y: 60 };
// get the clicked row's data and initialize the input fields.
let dataRecord = this.$refs.myGrid.getrowdata(this.editrow);
this.$refs.firstName.value = dataRecord.firstname;
this.$refs.lastName.value = dataRecord.lastname;
this.$refs.product.value = dataRecord.productname;
this.$refs.quantity.decimal = dataRecord.quantity;
this.$refs.price.decimal = dataRecord.price;
// show the popup window.
this.$refs.myWindow.open();
}
else {
let rowid = this.$refs.myGrid.getrowid(rowindex);
this.$refs.myGrid.deleterow(rowid);
}
},
saveBtnOnClick: function () {
if (this.editrow >= 0) {
let row = {
firstname: this.$refs.firstName.value, lastname: this.$refs.lastName.value, productname: this.$refs.product.value,
quantity: parseInt(this.$refs.quantity.decimal), price: parseFloat(this.$refs.price.decimal)
};
let rowid = this.$refs.myGrid.getrowid(this.editrow);
this.$refs.myGrid.updaterow(rowid, row);
this.$refs.myWindow.hide();
}
},
cancelBtnOnClick: function () {
this.$refs.myWindow.hide();
}
}
}
</script>
<style>
</style>

View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>jQWidgets Vue Example</title>
<link rel="stylesheet" href="node_modules/jqwidgets-scripts/jqwidgets/styles/jqx.base.css" type="text/css" />
<script src="https://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/generatedata.js"></script> </head>
<body>
<div id="app"></div>
<script src="dist/main.bundle.js"></script>
</body>
</html>

View File

@@ -0,0 +1,10 @@
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
new Vue({
el: '#app',
components: { App },
template: '<App/>'
})

View File

@@ -0,0 +1,33 @@
{
"name": "jQWidgets_Vue_Demo",
"version": "1.0.0",
"description": "Vue.js Demos Build Project",
"author": "www.jqwidgets.com <sales@jqwidgets.com>",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "npm run build"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"jqwidgets-scripts": "~6.1.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue": "^2.5.2",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
}
}

View File

@@ -0,0 +1,50 @@
'use strict'
const path = require('path')
const webpack = require('webpack')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
module.exports = {
entry: {
main: './main.js'
},
output: {
path: path.resolve(__dirname + '/dist'),
filename: '[name].bundle.js'
},
resolve: {
extensions: ['.js', '.vue'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': path.resolve(__dirname + '/src'),
}
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader'
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader'
},
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader']
}
]
},
plugins: [
// strip all the warnings from Vue.js source code.
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
// uglify build code
new UglifyJsPlugin({
// this speeds up the build
parallel: true
})
]
}