Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Focus the Field #723

Merged
merged 4 commits into from
Apr 8, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions src/components/ADempiere/Form/VPOS/Collection/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,13 @@
label-position="top"
label-width="10px"
style="float: right; display: flex; line-height: 10px;"
:disabled="isDisabled"
>
<el-row>
<el-col v-for="(field, index) in fieldsList" :key="index" :span="8">
<field-definition
:key="field.columnName"
:metadata-field="{
...field,
isReadOnly: isDisabled

}"
:metadata-field="field"
/>
</el-col>
</el-row>
Expand Down
1 change: 0 additions & 1 deletion src/components/ADempiere/Form/VPOS/Order/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
<el-main style="padding-top: 0px; padding-right: 10px; padding-bottom: 0px; padding-left: 10px;">
<el-table
ref="linesTable"
v-loading="updateOrderProcessPos"
v-shortkey="shortsKey"
:data="allOrderLines"
border
Expand Down
6 changes: 3 additions & 3 deletions src/components/ADempiere/RightPanel/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ export default {
}
}
},
mounted() {
this.insertToBody()
},
// mounted() {
// this.insertToBody()
yamelsenih marked this conversation as resolved.
Show resolved Hide resolved
// },
beforeDestroy() {
const elx = this.$refs.rightMenu
elx.remove()
Expand Down
6 changes: 3 additions & 3 deletions src/components/RightPanel/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ export default {
}
}
},
mounted() {
this.insertToBody()
},
// mounted() {
yamelsenih marked this conversation as resolved.
Show resolved Hide resolved
// this.insertToBody()
// },
beforeDestroy() {
const elx = this.$refs.rightPanel
elx.remove()
Expand Down
4 changes: 2 additions & 2 deletions src/views/documentation/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<span>
<b> {{ releasesLabel }} </b>
</span>
<a target="_blank" :href="releases">
<a target="_blank" :href="releasesLink">
<svg-icon icon-class="link" />
</a>
</div>
Expand Down Expand Up @@ -103,7 +103,7 @@ export default {
releaseNotes: {
body: ''
},
releases: 'https://github.com/adempiere/adempiere-vue/releases',
releasesLink: 'https://github.com/adempiere/adempiere-vue/releases',
releasesLabel: this.$t('documentation.releases'),
readmeRepositoryGithub: {},
readmeDocument: {}
Expand Down