Skip to content

Commit 92302aa

Browse files
committed
wip
1 parent b761bc0 commit 92302aa

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

js/src/vue-components/multiline/multiline-cell.component.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export default {
3737
return this.cellData.definition.component;
3838
},
3939
getComponentProps: function () {
40+
console.log(JSON.stringify(this.cellData, null, 2));
4041
if (this.getComponent() === 'atk-multiline-readonly') {
4142
return { readOnlyValue: this.fieldValue };
4243
}

js/src/vue-components/multiline/multiline-header.component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default {
1212
<sui-table-headerCell :colspan="getVisibleColumns()">{{caption}}</sui-table-headerCell>
1313
</sui-table-row>
1414
<sui-table-row :verticalAlign="'top'">
15-
<sui-table-header-cell :width=1 textAlign="center"><input type="checkbox" @input="onToggleDeleteAll" :checked.prop="isChecked" :indeterminate.prop="isIndeterminate" ref="check"></sui-table-header-cell>
15+
<sui-table-header-cell :width=1 textAlign="center"><input type="checkbox" @input="onToggleDeleteAll" :checked="isChecked" :indeterminate="isIndeterminate" ref="check"></sui-table-header-cell>
1616
<sui-table-header-cell v-for="(column, idx) in columns" :key="idx" :textAlign="getTextAlign(column)">
1717
<div>{{column.caption}}</div>
1818
<div :style="{ position: 'absolute', top: '-22px' }" v-if="false"><sui-label pointing="below" basic color="red" v-if="getErrorMsg(column)">{{getErrorMsg(column)}}</sui-label></div>

js/src/vue-components/multiline/multiline.component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default {
1313
<sui-table-row>
1414
<sui-table-header-cell />
1515
<sui-table-header-cell :colspan="getSpan" textAlign="right">
16-
<div is="sui-button-group">
16+
<div is="vue:sui-button-group">
1717
<sui-button size="small" @click.stop.prevent="onAdd" type="button" icon ref="addBtn" :disabled="isLimitReached">
1818
<sui-icon name="plus" />
1919
</sui-button>

0 commit comments

Comments
 (0)