1
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<template>
|
||||
<JqxGrid :width="getWidth" :height="450" :source="dataAdapter" :columns="columns" :rtl="true">
|
||||
</JqxGrid>
|
||||
</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: 'Ship Name', datafield: 'ShipName', width: 250, align: 'right', cellsalign: 'right' },
|
||||
{ text: 'Shipped Date', datafield: 'ShippedDate', width: 100, align: 'right', cellsalign: 'right', cellsformat: 'yyyy-MM-dd' },
|
||||
{ text: 'Freight', datafield: 'Freight', width: 80, align: 'right', cellsformat: 'F2', cellsalign: 'right' },
|
||||
{ text: 'Ship Address', datafield: 'ShipAddress', align: 'right', width: 350, cellsalign: 'right' },
|
||||
{ text: 'Ship City', datafield: 'ShipCity', width: 100, align: 'right', cellsalign: 'right' },
|
||||
{ text: 'Ship Country', datafield: 'ShipCountry', align: 'right', cellsalign: 'right' }
|
||||
]
|
||||
}
|
||||
},
|
||||
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', type: 'string' },
|
||||
{ name: 'ShipAddress', map: 'm\\:properties>d\\:ShipAddress', type: 'string' },
|
||||
{ name: 'ShipCity', map: 'm\\:properties>d\\:ShipCity', type: 'string' },
|
||||
{ name: 'ShipCountry', map: 'm\\:properties>d\\:ShipCountry', type: 'string' }
|
||||
],
|
||||
root: 'entry',
|
||||
record: 'content',
|
||||
id: 'm\\:properties>d\\:OrderID',
|
||||
url: 'orders.xml'
|
||||
};
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user