<i-form :model="this.data" class='app-form' ref='form' id='salesliteratureitem_main' style=""> <input style="display:none;" /> <row > <i-col v-show="detailsModel.group1.visible" :style="{}" :lg="{ span: 24, offset: 0 }"> <app-form-group layoutType="TABLE_24COL" titleStyle="" class='' :uiActionGroup="detailsModel.group1.uiActionGroup" @groupuiactionclick="groupUIActionClick($event)" :caption="$t('entities.salesliteratureitem.main_form.details.group1')" :isShowCaption="false" uiStyle="DEFAULT" :titleBarCloseMode="0" :isInfoGroupMode="false" > <row> <i-col v-show="detailsModel.title.visible" :style="{}" :md="{ span: 12, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 6, offset: 0 }"> <app-form-item name='title' :itemRules="this.rules.title" class='' :caption="$t('entities.salesliteratureitem.main_form.details.title')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.title.error" :isEmptyCaption="false" labelPos="LEFT"> <input-box v-model="data.title" @enter="onEnter($event)" unit="" :disabled="detailsModel.title.disabled" type='text' style=""></input-box> </app-form-item> </i-col> <i-col v-show="detailsModel.authorname.visible" :style="{}" :md="{ span: 12, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 6, offset: 0 }"> <app-form-item name='authorname' :itemRules="this.rules.authorname" class='' :caption="$t('entities.salesliteratureitem.main_form.details.authorname')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.authorname.error" :isEmptyCaption="false" labelPos="LEFT"> <input-box v-model="data.authorname" @enter="onEnter($event)" unit="" :disabled="detailsModel.authorname.disabled" type='text' style=""></input-box> </app-form-item> </i-col> <i-col v-show="detailsModel.keywords.visible" :style="{}" :md="{ span: 12, offset: 0 }" :lg="{ span: 24, offset: 0 }" :xl="{ span: 24, offset: 0 }"> <app-form-item name='keywords' :itemRules="this.rules.keywords" class='' :caption="$t('entities.salesliteratureitem.main_form.details.keywords')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.keywords.error" :isEmptyCaption="false" labelPos="LEFT"> <input-box v-model="data.keywords" :autoSize="{minRows: 10}" :disabled="detailsModel.keywords.disabled" type='textarea' style="height:200px;" ></input-box> </app-form-item> </i-col> <i-col v-show="detailsModel.attacheddocumenturl.visible" :style="{}" :md="{ span: 12, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 6, offset: 0 }"> <app-form-item name='attacheddocumenturl' :itemRules="this.rules.attacheddocumenturl" class='' :caption="$t('entities.salesliteratureitem.main_form.details.attacheddocumenturl')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.attacheddocumenturl.error" :isEmptyCaption="false" labelPos="LEFT"> <app-file-upload :formState="formState" :ignorefieldvaluechange="ignorefieldvaluechange" @formitemvaluechange="onFormItemValueChange($event)" :data="JSON.stringify(this.data)" name='attacheddocumenturl' :value="data.attacheddocumenturl" :disabled="detailsModel.attacheddocumenturl.disabled" :uploadparams='{}' :exportparams='{}' style="overflow: auto;"></app-file-upload> </app-form-item> </i-col> </row> </app-form-group> </i-col> </row> </i-form>