Files

95 lines
4.4 KiB
Vue
Raw Permalink Normal View History

2026-02-06 18:34:35 +08:00
<template>
<div>
<JqxGrid ref="myGrid" @pagechanged="onPageChanged($event)" @pagesizechanged="onPageSizeChanged($event)"
:width="getWidth" :source="dataAdapter" :columns="columns"
:pageable="true" :sortable="true" :columnsresize="true"
:autoheight="true" :selectionmode="'multiplerowsextended'">
</JqxGrid>
<div ref="eventsLog" style="display: none; margin-top: 30px;">
<div style="float: left;">
Event Log:
<JqxPanel ref="myPanel" :width="300" :height="300"></JqxPanel>
</div>
<div style="float: left;">
Paging Details:
<div ref="pagingInfo"></div>
</div>
</div>
</div>
</template>
<script>
import JqxGrid from "jqwidgets-scripts/jqwidgets-vue/vue_jqxgrid.vue";
import JqxPanel from "jqwidgets-scripts/jqwidgets-vue/vue_jqxpanel.vue";
export default {
components: {
JqxGrid,
JqxPanel
},
data: function () {
return {
getWidth: '90%',
dataAdapter: new jqx.dataAdapter(this.source),
columns: [
{ text: 'Ship Name', datafield: 'ShipName', width: 250 },
{ text: 'Shipped Date', datafield: 'ShippedDate', width: 230, cellsformat: 'D' },
{ text: 'Freight', datafield: 'Freight', width: 130, cellsformat: 'F2', cellsalign: 'right' },
{ text: 'Ship Address', datafield: 'ShipAddress', width: 350 },
{ text: 'Ship City', datafield: 'ShipCity', width: 100 },
{ text: 'Ship Country', datafield: 'ShipCountry', width: 101 }
]
}
},
beforeCreate: function () {
this.source = {
datatype: 'xml',
datafields: [
{ name: 'ShippedDate', map: 'm\\:properties>d\\:ShippedDate', type: 'date' },
{ name: 'Freight', map: 'm\\:properties>d\\:Freight', type: 'float' },
{ name: 'ShipName', map: 'm\\:properties>d\\:ShipName' },
{ name: 'ShipAddress', map: 'm\\:properties>d\\:ShipAddress' },
{ name: 'ShipCity', map: 'm\\:properties>d\\:ShipCity' },
{ name: 'ShipCountry', map: 'm\\:properties>d\\:ShipCountry' }
],
root: 'entry',
record: 'content',
id: 'm\\:properties>d\\:OrderID',
url: 'orders.xml'
};
},
methods: {
onPageChanged: function(event) {
this.$refs.eventsLog.style.display = 'block';
let loggedElements = document.getElementsByClassName('logged');
if (loggedElements.length >= 5) {
this.$refs.myPanel.clearcontent();
}
let args = event.args;
let eventData = 'pagechanged <div>Page:' + args.pagenum + ', Page Size: ' + args.pagesize + '</div>';
this.$refs.myPanel.prepend('<div class="logged" style="margin-top: 5px;">' + eventData + '</div>');
// get page information.
let paginginformation = this.$refs.myGrid.getpaginginformation();
this.$refs.pagingInfo.innerHTML = '<div style="margin-top: 5px;">Page:' + paginginformation.pagenum + ', Page Size: ' + paginginformation.pagesize + ', Pages Count: ' + paginginformation.pagescount + '</div>';
},
onPageSizeChanged: function (event) {
this.$refs.eventsLog.style.display = 'block';
this.$refs.myPanel.clearcontent();
let args = event.args;
let eventData = 'pagesizechanged <div>Page:' + args.pagenum + ', Page Size: ' + args.pagesize + ', Old Page Size: ' + args.oldpagesize + '</div>';
this.$refs.myPanel.prepend('<div style="margin-top: 5px">' + eventData + '</div>');
// get page information.
let paginginformation = this.$refs.myGrid.getpaginginformation();
this.$refs.pagingInfo.innerHTML = '<div style="margin-top: 5px;">Page:' + paginginformation.pagenum + ', Page Size: ' + paginginformation.pagesize + ', Pages Count: ' + paginginformation.pagescount + '</div>';
}
}
}
</script>
<style>
.jqx-panel{
border: none;
}
</style>