File tree 3 files changed +3
-2
lines changed
js/src/vue-components/multiline
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ export default {
37
37
return this . cellData . definition . component ;
38
38
} ,
39
39
getComponentProps : function ( ) {
40
+ console . log ( JSON . stringify ( this . cellData , null , 2 ) ) ;
40
41
if ( this . getComponent ( ) === 'atk-multiline-readonly' ) {
41
42
return { readOnlyValue : this . fieldValue } ;
42
43
}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default {
12
12
<sui-table-headerCell :colspan="getVisibleColumns()">{{caption}}</sui-table-headerCell>
13
13
</sui-table-row>
14
14
<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>
16
16
<sui-table-header-cell v-for="(column, idx) in columns" :key="idx" :textAlign="getTextAlign(column)">
17
17
<div>{{column.caption}}</div>
18
18
<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>
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default {
13
13
<sui-table-row>
14
14
<sui-table-header-cell />
15
15
<sui-table-header-cell :colspan="getSpan" textAlign="right">
16
- <div is="sui-button-group">
16
+ <div is="vue: sui-button-group">
17
17
<sui-button size="small" @click.stop.prevent="onAdd" type="button" icon ref="addBtn" :disabled="isLimitReached">
18
18
<sui-icon name="plus" />
19
19
</sui-button>
You can’t perform that action at this time.
0 commit comments