48 lines
1.5 KiB
Vue
48 lines
1.5 KiB
Vue
<template>
|
|
<div style="font-size: 13px; font-family: Verdana; float: left;">
|
|
|
|
<JqxGrid :width="getWidth" :source="dataAdapter" :columns="columns" :columnsresize="true">
|
|
</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: 'Name', datafield: 'name', width: 250 },
|
|
{ text: 'Beverage Type', datafield: 'type', width: 250 },
|
|
{ text: 'Calories', datafield: 'calories', width: 180 },
|
|
{ text: 'Total Fat', datafield: 'totalfat', width: 120 },
|
|
{ text: 'Protein', datafield: 'protein', minwidth: 120 }
|
|
]
|
|
}
|
|
},
|
|
beforeCreate: function () {
|
|
this.source = {
|
|
datatype: 'json',
|
|
datafields: [
|
|
{ name: 'name', type: 'string' },
|
|
{ name: 'type', type: 'string' },
|
|
{ name: 'calories', type: 'int' },
|
|
{ name: 'totalfat', type: 'string' },
|
|
{ name: 'protein', type: 'string' }
|
|
],
|
|
id: 'id',
|
|
url: 'beverages.txt'
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style> |