提交 9a4cb0e7 编写于 作者: ibizdev's avatar ibizdev

tony001 发布系统代码 [后台服务,演示应用]

上级 22a670cd
......@@ -712,7 +712,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCustomView_layout' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -748,7 +748,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCustomView_layout' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9GridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1429,7 +1429,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1499,7 +1499,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1607,7 +1607,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1799,7 +1799,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1395,7 +1395,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1465,7 +1465,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1573,7 +1573,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1765,7 +1765,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1499,7 +1499,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1569,7 +1569,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1677,7 +1677,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1869,7 +1869,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -369,7 +369,7 @@ export default class GuideBase extends Vue implements ControlInterface {
* @type {Boolean}
* @memberof GuideBase
*/
public isShowStepBar: Boolean = false ;
public isShowStepBar: Boolean = true ;
/**
* 获取多项数据
......
......@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -828,5 +828,4 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
<style lang='scss'>
@import './quicksearchform-searchform.scss';
</style>;
</style>
\ No newline at end of file
......@@ -768,7 +768,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/
public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -862,7 +862,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return;
}
let _datas:any[] = [];
......@@ -978,7 +978,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
try {
if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
......@@ -986,7 +986,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){
......
......@@ -266,9 +266,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -278,7 +278,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -303,9 +303,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -340,9 +340,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -456,8 +456,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -524,7 +525,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -535,13 +535,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -552,7 +548,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -567,7 +563,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -578,13 +573,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -595,7 +586,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -690,7 +681,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -701,14 +691,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -781,7 +766,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -794,7 +779,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -814,6 +799,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
"modeltype" : "PSDEFORM_EDITFORM"
......
......@@ -772,9 +772,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -784,7 +784,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -809,9 +809,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -846,9 +846,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -962,8 +962,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1030,7 +1031,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -1041,13 +1041,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1058,7 +1054,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -1073,7 +1069,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -1084,13 +1079,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1101,7 +1092,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -1196,7 +1187,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -1207,14 +1197,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1287,7 +1272,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -1300,7 +1285,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1320,6 +1305,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -774,9 +774,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -786,7 +786,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -811,9 +811,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -848,9 +848,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -964,8 +964,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1032,7 +1033,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -1043,13 +1043,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1060,7 +1056,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -1075,7 +1071,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -1086,13 +1081,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1103,7 +1094,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -1198,7 +1189,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -1209,14 +1199,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1289,7 +1274,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -1302,7 +1287,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1322,6 +1307,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -427,9 +427,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -439,7 +439,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -464,9 +464,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -501,9 +501,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -617,8 +617,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -685,7 +686,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -696,13 +696,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -713,7 +709,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -728,7 +724,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -739,13 +734,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -756,7 +747,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -851,7 +842,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -862,14 +852,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -942,7 +927,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -955,7 +940,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -975,6 +960,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -442,9 +442,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -454,7 +454,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -479,9 +479,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -516,9 +516,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -632,8 +632,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -700,7 +701,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -711,13 +711,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -728,7 +724,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -743,7 +739,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -754,13 +749,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -771,7 +762,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -866,7 +857,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -877,14 +867,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -957,7 +942,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -970,7 +955,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -990,6 +975,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -373,9 +373,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -385,7 +385,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -410,9 +410,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -447,9 +447,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -563,8 +563,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -631,7 +632,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -642,13 +642,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -659,7 +655,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -674,7 +670,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -685,13 +680,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -702,7 +693,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -797,7 +788,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -808,14 +798,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -888,7 +873,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -901,7 +886,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -921,6 +906,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -391,9 +391,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -403,7 +403,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -428,9 +428,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -465,9 +465,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -581,8 +581,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -649,7 +650,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -660,13 +660,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -677,7 +673,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -692,7 +688,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -703,13 +698,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -720,7 +711,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -815,7 +806,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -826,14 +816,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -906,7 +891,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -919,7 +904,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -939,6 +924,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -392,9 +392,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -404,7 +404,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -429,9 +429,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -466,9 +466,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -582,8 +582,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -650,7 +651,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -661,13 +661,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -678,7 +674,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -693,7 +689,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -704,13 +699,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -721,7 +712,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -816,7 +807,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -827,14 +817,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -907,7 +892,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -920,7 +905,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -940,6 +925,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -373,9 +373,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -385,7 +385,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -410,9 +410,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -447,9 +447,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -563,8 +563,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -631,7 +632,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -642,13 +642,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -659,7 +655,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -674,7 +670,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -685,13 +680,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -702,7 +693,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -797,7 +788,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -808,14 +798,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -888,7 +873,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -901,7 +886,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -921,6 +906,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -365,9 +365,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -377,7 +377,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -402,9 +402,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -439,9 +439,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -555,8 +555,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -623,7 +624,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -634,13 +634,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -651,7 +647,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -666,7 +662,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -677,13 +672,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -694,7 +685,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -789,7 +780,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -800,14 +790,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -880,7 +865,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -893,7 +878,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -920,6 +905,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -477,9 +477,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -489,7 +489,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -514,9 +514,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -551,9 +551,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -667,8 +667,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -735,7 +736,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -746,13 +746,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -763,7 +759,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -778,7 +774,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -789,13 +784,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -806,7 +797,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -901,7 +892,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -912,14 +902,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -992,7 +977,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -1005,7 +990,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1025,6 +1010,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -477,9 +477,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -489,7 +489,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -514,9 +514,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -551,9 +551,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -667,8 +667,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -735,7 +736,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -746,13 +746,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -763,7 +759,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -778,7 +774,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -789,13 +784,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -806,7 +797,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -901,7 +892,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -912,14 +902,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -992,7 +977,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -1005,7 +990,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1025,6 +1010,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -477,9 +477,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -489,7 +489,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -514,9 +514,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -551,9 +551,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -667,8 +667,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -735,7 +736,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -746,13 +746,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -763,7 +759,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -778,7 +774,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -789,13 +784,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -806,7 +797,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -901,7 +892,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -912,14 +902,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -992,7 +977,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -1005,7 +990,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1025,6 +1010,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -477,9 +477,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -489,7 +489,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -514,9 +514,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -551,9 +551,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -667,8 +667,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -735,7 +736,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -746,13 +746,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -763,7 +759,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -778,7 +774,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -789,13 +784,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -806,7 +797,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -901,7 +892,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -912,14 +902,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -992,7 +977,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -1005,7 +990,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1025,6 +1010,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -771,9 +771,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -783,7 +783,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -808,9 +808,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -845,9 +845,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -961,8 +961,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1029,7 +1030,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -1040,13 +1040,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1057,7 +1053,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -1072,7 +1068,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -1083,13 +1078,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1100,7 +1091,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -1195,7 +1186,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -1206,14 +1196,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -1286,7 +1271,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -1299,7 +1284,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -1319,6 +1304,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -385,9 +385,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -397,7 +397,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -422,9 +422,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -459,9 +459,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -575,8 +575,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -643,7 +644,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -654,13 +654,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -671,7 +667,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -686,7 +682,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -697,13 +692,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -714,7 +705,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -809,7 +800,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -820,14 +810,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -900,7 +885,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -913,7 +898,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -933,6 +918,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
......
......@@ -27648,9 +27648,9 @@
"codeName" : "IBIZBOOKName"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 200,
"name" : "ibizbookname"
"editorType" : "SPAN",
"name" : "ibizbookname",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -27660,7 +27660,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_formitems/ibizbookname",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -27685,9 +27685,9 @@
"codeName" : "Author"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "author"
"editorType" : "SPAN",
"name" : "author",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -27722,9 +27722,9 @@
"codeName" : "Press"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"maxLength" : 100,
"name" : "press"
"editorType" : "SPAN",
"name" : "press",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -27838,8 +27838,9 @@
"codeName" : "Booknumber"
},
"getPSEditor" : {
"editorType" : "TEXTBOX",
"name" : "booknumber"
"editorType" : "SPAN",
"name" : "booknumber",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -27906,7 +27907,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/lendouttime",
......@@ -27917,13 +27917,9 @@
"codeName" : "Lendouttime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "lendouttime"
"editorType" : "SPAN",
"name" : "lendouttime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -27934,7 +27930,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/lendouttime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -27949,7 +27945,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemWidth" : 225.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/returntime",
......@@ -27960,13 +27955,9 @@
"codeName" : "Returntime"
},
"getPSEditor" : {
"dateTimeFormat" : "YYYY-MM-DD",
"editorParams" : {
"TIMEFMT" : "YYYY-MM-DD"
},
"editorType" : "DATEPICKEREX_NOTIME",
"editorWidth" : 100.0,
"name" : "returntime"
"editorType" : "SPAN",
"name" : "returntime",
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -27977,7 +27968,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formitems/returntime",
"valueFormat" : "YYYY-MM-DD",
"allowEmpty" : false,
"allowEmpty" : true,
"showCaption" : true
}, {
"getCapPSLanguageRes" : {
......@@ -28072,7 +28063,6 @@
"detailType" : "FORMITEM",
"enableCond" : 3,
"ignoreInput" : 0,
"itemHeight" : 200.0,
"labelPos" : "LEFT",
"labelWidth" : 125,
"mOSFilePath" : "psdeformdetail_formitems/icon",
......@@ -28083,14 +28073,9 @@
"codeName" : "Icon"
},
"getPSEditor" : {
"editorHeight" : 200.0,
"editorParams" : {
"HEIGHT" : "200"
},
"editorType" : "TEXTAREA_10",
"maxLength" : 1048576,
"editorType" : "SPAN",
"name" : "icon",
"showMaxLength" : true
"enableLinkView" : false
},
"getPSLayoutPos" : {
"colLG" : 8,
......@@ -28163,7 +28148,7 @@
"layout" : "TABLE_24COL"
},
"rTMOSFilePath" : "psdeformdetail_grouppanels/group1",
"infoGroupMode" : false,
"infoGroupMode" : true,
"showCaption" : true
} ],
"getPSLayout" : {
......@@ -28176,7 +28161,7 @@
},
"rTMOSFilePath" : "psdeformdetail_formpages/formpage1",
"width" : 484.0,
"infoGroupMode" : false
"infoGroupMode" : true
} ],
"getPSLayout" : {
"childColLG" : -1,
......@@ -28196,6 +28181,7 @@
"modelref" : true,
"id" : "update"
},
"infoFormMode" : true,
"noTabHeader" : true,
"name" : "form",
"modelid" : "6cd11a010cbbb4d2bad5e1aad7e8020a",
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册