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,188 @@
<template>
<div style="font-size: 13px; font-family: Verdana; float: left">
<JqxGrid ref="myGrid" @cellselect="myGridOnCellSelect($event)" @cellunselect="myGridOnCellUnselect($event)"
:width="getWidth" :source="dataAdapter"
:columns="columns" :selectionmode="'singlecell'">
</JqxGrid>
<div style="margin-top: 20px">
<div style="float: left">
<div>
<JqxInput ref="myInput1" style="float: left; margin-right: 5px"
:width="50" :height="20" :value="100">
</JqxInput>
<JqxButton style="float: left" @click="scrollToBtnOnClick()">Scroll to Row</JqxButton>
</div>
<div style="clear: both"></div>
<div style="margin-top: 10px;">
</div>
<JqxCheckBox :checked="true" @change="myCheckBoxOnChange($event)">Enable Hover</JqxCheckBox>
<div style="margin-top: 10px">
<span>Selection Mode</span>
<JqxDropDownList style="margin-top: 5px" @select="myDropDownListOnSelect($event)"
:width="120" :height="25" :selectedIndex="1" :dropDownWidth="200"
:autoDropDownHeight="true" :source="dropDownSource1">
</JqxDropDownList>
</div>
</div>
<div style="float: left; margin-left: 20px">
<div>
<div>
<table>
<tbody>
<tr>
<td align="right">Row</td>
<td>
<JqxInput ref="myInput2" style="float: left" :width="50" :value="0"></JqxInput>
</td>
</tr>
<tr>
<td align="right">Column:</td>
<td>
<JqxDropDownList ref="myDropDownList"
:width="120" :height="25" :selectedIndex="1"
:autoDropDownHeight="true" :source="dropDownSource2">
</JqxDropDownList>
</td>
</tr>
<tr>
<td align="right">
<JqxButton style="float: left; margin-right: 5px" @click="clearBtnOnClick()">Clear Selection</JqxButton>
</td>
<td>
<JqxButton style="float: left" @click="selectBtnOnClick()">Select Cell</JqxButton>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div style="float: left; margin-left: 20px">
<span>Selection Log:</span>
<div style="margin-top: 10px">
<span>Selected Cell:</span>
<span ref="selectedCell"></span>
<br />
<span>Unselected Cell:</span>
<span ref="unselectedCell"></span>
</div>
</div>
</div>
</div>
</template>
<script>
import JqxGrid from "jqwidgets-scripts/jqwidgets-vue/vue_jqxgrid.vue";
import JqxInput from "jqwidgets-scripts/jqwidgets-vue/vue_jqxinput.vue";
import JqxButton from "jqwidgets-scripts/jqwidgets-vue/vue_jqxbuttons.vue";
import JqxCheckBox from "jqwidgets-scripts/jqwidgets-vue/vue_jqxcheckbox.vue";
import JqxDropDownList from "jqwidgets-scripts/jqwidgets-vue/vue_jqxdropdownlist.vue";
export default {
components: {
JqxGrid,
JqxInput,
JqxButton,
JqxCheckBox,
JqxDropDownList
},
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: 180 },
{ text: 'Quantity', datafield: 'quantity', width: 80, cellsalign: 'right' },
{ text: 'Unit Price', datafield: 'price', cellsalign: 'right', cellsformat: 'c2' }
],
dropDownSource1: ['none', 'single cell', 'multiple cells', 'multiple cells extended', 'multiple cells advanced'],
dropDownSource2: ['First Name', 'Last Name', 'Product Name', 'Quantity', 'Unit Price', 'Total']
}
},
beforeCreate: function () {
this.source = {
localdata: generatedata(200, false),
datafields:
[
{ name: 'id', type: 'number' },
{ name: 'firstname', type: 'string' },
{ name: 'lastname', type: 'string' },
{ name: 'productname', type: 'string' },
{ name: 'available', type: 'bool' },
{ name: 'quantity', type: 'number' },
{ name: 'price', type: 'number' },
{ name: 'total', type: 'number' }
],
datatype: 'array'
};
},
mounted: function () {
this.$refs.myGrid.selectcell(2, 'lastname');
},
methods: {
scrollToBtnOnClick: function () {
let index = parseInt(this.$refs.myInput1.value);
if (!isNaN(index)) {
this.$refs.myGrid.ensurerowvisible(index);
}
},
clearBtnOnClick: function () {
this.$refs.myGrid.clearselection();
},
selectBtnOnClick: function () {
let index = parseInt(this.$refs.myInput2.val());
let columnindex = this.$refs.myDropDownList.getSelectedIndex();
let columndatafield = this.$refs.myGrid.getcolumnat(columnindex).datafield;
if (!isNaN(index)) {
this.$refs.myGrid.selectcell(index, columndatafield);
}
},
// enable or disable the selection.
myDropDownListOnSelect: function (event) {
let index = event.args.index;
switch (index) {
case 0:
this.$refs.myGrid.selectionmode = 'none';
break;
case 1:
this.$refs.myGrid.selectionmode = 'singlecell';
break;
case 2:
this.$refs.myGrid.selectionmode = 'multiplecells';
break;
case 3:
this.$refs.myGrid.selectionmode = 'multiplecellsextended';
break;
case 4:
this.$refs.myGrid.selectionmode = 'multiplecellsadvanced';
break;
}
},
// enable or disable the hover state.
myCheckBoxOnChange: function (event) {
this.$refs.myGrid.enablehover = event.args.checked;
},
// display selected row index.
myGridOnCellSelect: function (event) {
let columnheader = this.$refs.myGrid.getcolumn(event.args.datafield).text;
this.$refs.selectedCell.innerHTML = 'Row: ' + event.args.rowindex + ', Column: ' + columnheader;
},
// display unselected row index.
myGridOnCellUnselect: function (event) {
let columnheader = this.$refs.myGrid.getcolumn(event.args.datafield).text;
this.$refs.unselectedCell.innerHTML = 'Row: ' + event.args.rowindex + ', Column: ' + columnheader;
}
}
}
</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
})
]
}