Update core smartproc

This commit is contained in:
Titan Hadiyan
2023-05-29 10:48:07 +07:00
parent fc7a97585a
commit e577788c80
36 changed files with 1303 additions and 348 deletions

View File

@@ -6,8 +6,8 @@
<div class="dx-card responsive-paddings">
<div id="app-container">
<DxDataGrid ref="currDataGrid"
:data-source="customDataSource"
key-expr="ID"
:data-source="dataSource"
key-expr="id"
:allow-column-reordering="true"
:column-auto-width="true"
@exporting="onExporting">
@@ -29,7 +29,7 @@
<DxItem dataField="jenisAnggaran">
<DxRequiredRule message="Jenis Anggaran harus diisi" />
</DxItem>
<DxItem dataField="keterangan" />
<DxItem dataField="keterangan"/>
</DxForm>
<DxPopup
:hide-on-outside-click="true"
@@ -66,7 +66,7 @@
<DxButton name="delete"/>
</DxColumn>
<template #row-cell-template="{ data }">
<DxText>{{ data.rowIndex +1 }}</DxText>
<DxText>{{ data.rowIndex + data.component.pageIndex() + 1 }}</DxText>
</template>
<DxSearchPanel :visible="true" :highlight-case-sensitive="true" :width="300" placeholder="Cari Jenis Anggaran..."/>
<!--<DxExport
@@ -105,7 +105,7 @@ import { exportDataGrid as exportDataGridToPDF } from 'devextreme/pdf_exporter';
const URL = process.env.VUE_APP_ROOT_API+'/jenisanggaran';
const customDataSource = new CustomStore({
const dataSource = new CustomStore({
key: 'id',
load: () => {
@@ -206,7 +206,7 @@ export default {
data() {
return {
//jsonUrl: URL,
customDataSource,
dataSource,
}
},
}