- Added Delete Record to the CGridTableRec

This commit is contained in:
Paolo Arena
2019-10-15 20:40:23 +02:00
parent 0ee08f8430
commit 9fd858d33f
16 changed files with 210 additions and 53 deletions

View File

@@ -1,5 +1,6 @@
import { IAction } from '@src/model/Projects'
import { Component } from 'vue-router/types/router'
import { lists } from '@src/store/Modules/lists'
export interface IPost {
title: string
@@ -83,6 +84,7 @@ export interface IListRoutes {
infooter?: boolean
submenu?: boolean
onlyAdmin?: boolean
onlyManager?: boolean
meta?: any
idelem?: string
urlroute?: string
@@ -209,3 +211,17 @@ export interface IParamsQuery {
sortBy: any
descending: number
}
export interface IColGridTable {
name: string
required: boolean
label?: string
label_trans?: string
align?: string
field?: string
sortable?: boolean
disable?: boolean
titlepopupedit?: string
icon?: string
action?: any
}