Site Configuration by Server Params (confsites and confpages)
This commit is contained in:
@@ -100,7 +100,7 @@ export default defineComponent({
|
||||
type: Object as PropType<IColGridTable> | undefined,
|
||||
required: false,
|
||||
default: () => {
|
||||
return { name: '' }
|
||||
return { }
|
||||
},
|
||||
},
|
||||
id: {
|
||||
@@ -130,7 +130,9 @@ export default defineComponent({
|
||||
const { t } = useI18n()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const col = ref(<IColGridTable> { name: 'test', fieldtype: 0, showWhen: costanti.showWhen.NewRec + costanti.showWhen.InEdit + costanti.showWhen.InView, visible: true, maxlength: props.maxlength, minlength: props.minlength })
|
||||
const col = ref(<IColGridTable>{
|
||||
name: 'test', fieldtype: 0, showWhen: costanti.showWhen.NewRec + costanti.showWhen.InEdit + costanti.showWhen.InView, visible: true, maxlength: props.maxlength, minlength: props.minlength
|
||||
})
|
||||
const row = ref({})
|
||||
|
||||
const { setValDb, getValDb } = MixinBase()
|
||||
@@ -163,9 +165,9 @@ export default defineComponent({
|
||||
} else {
|
||||
// console.log('Tab = ', props.table, 'key=', props.mykey, 'mycolProp', props.mycol)
|
||||
col.value = fieldsTable.getColByTable(props.table, props.mykey)
|
||||
// console.log('MYCOL = ', col.value)
|
||||
}
|
||||
|
||||
// console.log('COL = ', col.value, 'MyCol passed', props.mycol)
|
||||
}
|
||||
|
||||
onMounted(mounted)
|
||||
|
||||
Reference in New Issue
Block a user