1
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
<template>
|
||||
<div style="font-size: 13px; font-family: Verdana; float: left">
|
||||
|
||||
<JqxGrid :width="getWidth" :source="dataAdapter" :columns="columns"
|
||||
:virtualmode="true" :rendergridrows="rendergridrows">
|
||||
</JqxGrid>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import JqxGrid from "jqwidgets-scripts/jqwidgets-vue/vue_jqxgrid.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
JqxGrid
|
||||
},
|
||||
data: function () {
|
||||
return {
|
||||
getWidth: '90%',
|
||||
dataAdapter: new jqx.dataAdapter(this.source),
|
||||
columns: [
|
||||
{ text: 'Id', datafield: 'id', width: 100 },
|
||||
{ text: 'First Name', datafield: 'firstname', width: 120 },
|
||||
{ text: 'Last Name', datafield: 'lastname', width: 120 },
|
||||
{ text: 'Product', datafield: 'productname', width: 180 },
|
||||
{ text: 'Quantity', datafield: 'quantity', width: 80, cellsalign: 'right' },
|
||||
{ text: 'Unit Price', datafield: 'price', width: 90, cellsalign: 'right', cellsformat: 'c2' },
|
||||
{ text: 'Total', datafield: 'total', cellsalign: 'right', cellsformat: 'c2' }
|
||||
]
|
||||
}
|
||||
},
|
||||
beforeCreate: function () {
|
||||
this.source = {
|
||||
datatype: 'array',
|
||||
localdata: {},
|
||||
totalrecords: 1000000
|
||||
}
|
||||
|
||||
this.firstNames = [
|
||||
'Andrew', 'Nancy', 'Shelley', 'Regina', 'Yoshi', 'Antoni', 'Mayumi', 'Ian', 'Peter', 'Lars', 'Petra', 'Martin', 'Sven', 'Elio', 'Beate', 'Cheryl', 'Michael', 'Guylene'
|
||||
];
|
||||
|
||||
this.lastNames = [
|
||||
'Fuller', 'Davolio', 'Burke', 'Murphy', 'Nagase', 'Saavedra', 'Ohno', 'Devling', 'Wilson', 'Peterson', 'Winkler', 'Bein', 'Petersen', 'Rossi', 'Vileid', 'Saylor', 'Bjorn', 'Nodier'
|
||||
];
|
||||
|
||||
this.productNames = [
|
||||
'Black Tea', 'Green Tea', 'Caffe Espresso', 'Doubleshot Espresso', 'Caffe Latte', 'White Chocolate Mocha', 'Cramel Latte', 'Caffe Americano', 'Cappuccino', 'Espresso Truffle', 'Espresso con Panna', 'Peppermint Mocha Twist'
|
||||
];
|
||||
|
||||
this.priceValues = [
|
||||
'2.25', '1.5', '3.0', '3.3', '4.5', '3.6', '3.8', '2.5', '5.0', '1.75', '3.25', '4.0'
|
||||
];
|
||||
},
|
||||
methods: {
|
||||
generateData: function(startindex, endindex) {
|
||||
let data = {};
|
||||
for (let i = startindex; i < endindex; i++) {
|
||||
let row = {};
|
||||
let productindex = Math.floor(Math.random() * this.productNames.length);
|
||||
let price = parseFloat(this.priceValues[productindex]);
|
||||
let quantity = 1 + Math.round(Math.random() * 10);
|
||||
row['id'] = i;
|
||||
row['firstname'] = this.firstNames[Math.floor(Math.random() * this.firstNames.length)];
|
||||
row['lastname'] = this.lastNames[Math.floor(Math.random() * this.lastNames.length)];
|
||||
row['productname'] = this.productNames[productindex];
|
||||
row['price'] = price;
|
||||
row['quantity'] = quantity;
|
||||
row['total'] = price * quantity;
|
||||
data[i] = row;
|
||||
}
|
||||
return data;
|
||||
},
|
||||
rendergridrows: function (params) {
|
||||
let data = this.generateData(params.startindex, params.endindex);
|
||||
return data;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user