- Added TablesList page

- Added Insert Record empty
This commit is contained in:
Paolo Arena
2019-10-20 01:22:38 +02:00
parent 4a7c68fbd5
commit 313a7db77d
16 changed files with 292 additions and 148 deletions

View File

@@ -48,6 +48,7 @@ export interface IGlobalState {
mobileMode: boolean
menuCollapse: boolean
leftDrawerOpen: boolean
RightDrawerOpen: boolean
category: string
stateConnection: string
networkDataReceived: boolean
@@ -214,7 +215,7 @@ export interface IParamsQuery {
export interface IColGridTable {
name: string
required: boolean
required?: boolean
label?: string
label_trans?: string
align?: string
@@ -227,4 +228,12 @@ export interface IColGridTable {
action?: any
foredit?: boolean
isdate?: boolean
visuonlyEditVal?: boolean
}
export interface ITableRec {
label: string
value: string
columns: IColGridTable[]
colkey: string
}