Files
iMES_Net/iMES.WebApi/wwwroot/BiManage/JS/JQGrid/grid/bindingtotsv/App.vue

43 lines
1.4 KiB
Vue
Raw Normal View History

2026-02-06 18:34:35 +08:00
<template>
<JqxGrid :width="getWidth" :source="dataAdapter" :columns="columns" :columnsresize="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: 'Year', datafield: 'Year', width: 200 },
{ text: 'HPI', datafield: 'HPI', cellsformat: 'f2', width: 200 },
{ text: 'Build Cost', datafield: 'BuildCost', cellsformat: 'f2', width: 180 },
{ text: 'Population', datafield: 'Population', cellsformat: 'f2', width: 100 },
{ text: 'Rate', datafield: 'Rate', cellsformat: 'f5', minwidth: 100 }
]
}
},
beforeCreate: function () {
this.source = {
datatype: 'tab',
datafields: [
{ name: 'Year', type: 'int' },
{ name: 'HPI', type: 'float' },
{ name: 'BuildCost', type: 'float' },
{ name: 'Population', type: 'float' },
{ name: 'Rate', type: 'float' }
],
url: 'homeprices.txt'
};
}
}
</script>
<style>
</style>