Merge pull request #4544 from FlipWarthog/PV4543
Fix #4543: Column: headercheckboxicon slot not workingpull/4551/head
commit
665249279f
|
@ -87,7 +87,6 @@
|
|||
:filtersStore="filters"
|
||||
:filterDisplay="filterDisplay"
|
||||
:filterInputProps="filterInputProps"
|
||||
:headerCheckboxIconTemplate="$slots.headercheckboxicon"
|
||||
@column-click="onColumnHeaderClick($event)"
|
||||
@column-mousedown="onColumnHeaderMouseDown($event)"
|
||||
@filter-change="onFilterChange"
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
:checked="allRowsSelected"
|
||||
@change="onHeaderCheckboxChange"
|
||||
:disabled="empty"
|
||||
:headerCheckboxIconTemplate="headerCheckboxIconTemplate"
|
||||
:headerCheckboxIconTemplate="column.children && column.children.headercheckboxicon"
|
||||
:column="column"
|
||||
:pt="pt"
|
||||
/>
|
||||
|
@ -181,10 +181,6 @@ export default {
|
|||
filterInputProps: {
|
||||
type: null,
|
||||
default: null
|
||||
},
|
||||
headerCheckboxIconTemplate: {
|
||||
type: Function,
|
||||
default: null
|
||||
}
|
||||
},
|
||||
data() {
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
@constraint-add="$emit('constraint-add', $event)"
|
||||
@constraint-remove="$emit('constraint-remove', $event)"
|
||||
@apply-click="$emit('apply-click', $event)"
|
||||
:headerCheckboxIconTemplate="headerCheckboxIconTemplate"
|
||||
:pt="pt"
|
||||
/>
|
||||
</template>
|
||||
|
@ -119,7 +118,6 @@
|
|||
@constraint-add="$emit('constraint-add', $event)"
|
||||
@constraint-remove="$emit('constraint-remove', $event)"
|
||||
@apply-click="$emit('apply-click', $event)"
|
||||
:headerCheckboxIconTemplate="headerCheckboxIconTemplate"
|
||||
:pt="pt"
|
||||
/>
|
||||
</template>
|
||||
|
@ -226,10 +224,6 @@ export default {
|
|||
filterInputProps: {
|
||||
type: null,
|
||||
default: null
|
||||
},
|
||||
headerCheckboxIconTemplate: {
|
||||
type: Function,
|
||||
default: null
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
Loading…
Reference in New Issue