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

72 lines
2.7 KiB
Vue
Raw Normal View History

2026-02-06 18:34:35 +08:00
<template>
<div>
<JqxGrid ref="myGrid"
:width="getWidth" :source="dataAdapter" :columns="columns"
:filterable="true" :showeverpresentrow="true" :editable="true"
:everpresentrowposition="'top'" :selectionmode="'multiplecellsadvanced'">
</JqxGrid>
<br />
<JqxRadioButton @checked="topBtnOnChecked()" :checked="true">Add New Row to Top</JqxRadioButton>
<JqxRadioButton @checked="bottomBtnOnChecked()">Add New Row to Bottom</JqxRadioButton>
</div>
</template>
<script>
import JqxGrid from "jqwidgets-scripts/jqwidgets-vue/vue_jqxgrid.vue";
import JqxRadioButton from "jqwidgets-scripts/jqwidgets-vue/vue_jqxradiobutton.vue";
export default {
components: {
JqxGrid,
JqxRadioButton
},
data: function () {
return {
getWidth: '90%',
dataAdapter: new jqx.dataAdapter(this.source),
columns: [
{
text: 'Name', columntype: 'textbox', filtertype: 'input', datafield: 'name', width: 215,
initEverPresentRowWidget: (datafield, htmlElement) => {
let input = htmlElement.find('input');
input.attr('readonly', true);
input.attr('disabled', true);
htmlElement.addClass('jqx-fill-state-disabled');
}
},
{ text: 'Product', filtertype: 'checkedlist', datafield: 'productname', width: 220 },
{ text: 'Ship Date', datafield: 'date', filtertype: 'range', width: 210, cellsalign: 'right', cellsformat: 'd' },
{ text: 'Qty.', datafield: 'quantity', filtertype: 'number', cellsalign: 'right' }
]
}
},
beforeCreate: function () {
this.source = {
localdata: generatedata(10, false),
datafields:
[
{ name: 'name', type: 'string' },
{ name: 'productname', type: 'string' },
{ name: 'available', type: 'bool' },
{ name: 'date', type: 'date' },
{ name: 'quantity', type: 'number' }
],
datatype: 'array'
}
},
methods: {
topBtnOnChecked: function() {
this.$refs.myGrid.everpresentrowactions = 'add reset';
},
bottomBtnOnChecked: function () {
this.$refs.myGrid.everpresentrowactions = 'addBottom reset';
}
}
}
</script>
<style>
</style>