Keyboard support for TreeTable checkboxes

pull/41/head
cagataycivici 2019-08-07 22:50:19 +03:00
parent 981ef84292
commit 1ba1cb148e
1 changed files with 14 additions and 3 deletions

View File

@ -6,9 +6,9 @@
</span> </span>
<div class="p-checkbox p-treetable-checkbox p-component" @click="toggleCheckbox" v-if="checkboxSelectionMode && col.expander"> <div class="p-checkbox p-treetable-checkbox p-component" @click="toggleCheckbox" v-if="checkboxSelectionMode && col.expander">
<div class="p-hidden-accessible"> <div class="p-hidden-accessible">
<input type="checkbox" /> <input type="checkbox" @focus="onCheckboxFocus" @blur="onCheckboxBlur" />
</div> </div>
<div :class="checkboxClass"> <div ref="checkboxEl" :class="checkboxClass">
<span :class="checkboxIcon"></span> <span :class="checkboxIcon"></span>
</div> </div>
</div> </div>
@ -55,6 +55,11 @@ export default {
default: 0 default: 0
} }
}, },
data() {
return {
checkboxFocused: false
}
},
nodeTouched: false, nodeTouched: false,
methods: { methods: {
resolveFieldData(rowData, field) { resolveFieldData(rowData, field) {
@ -183,6 +188,12 @@ export default {
check: event.check, check: event.check,
selectionKeys: _selectionKeys selectionKeys: _selectionKeys
}); });
},
onCheckboxFocus() {
this.checkboxFocused = true;
},
onCheckboxBlur() {
this.checkboxFocused = false;
} }
}, },
computed: { computed: {
@ -219,7 +230,7 @@ export default {
return this.selectionMode === 'checkbox'; return this.selectionMode === 'checkbox';
}, },
checkboxClass() { checkboxClass() {
return ['p-checkbox-box', {'p-highlight': this.checked}]; return ['p-checkbox-box', {'p-highlight': this.checked, 'p-focus': this.checkboxFocused}];
}, },
checkboxIcon() { checkboxIcon() {
return ['p-checkbox-icon p-c', {'pi pi-check': this.checked, 'pi pi-minus': this.partialChecked}]; return ['p-checkbox-icon p-c', {'pi pi-check': this.checked, 'pi pi-minus': this.partialChecked}];