We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c115d6b + 757063d commit 7c31f66Copy full SHA for 7c31f66
3 files changed
src/components/properties/CellProperty/InputCell/script.js
@@ -36,6 +36,12 @@ export default {
36
},
37
38
methods: {
39
+ inputFocused() {
40
+ this.$emit('focused');
41
+ },
42
+ inputBlurred() {
43
+ this.$emit('blurred');
44
45
onChange(value) {
46
this.editing = true;
47
src/components/properties/CellProperty/InputCell/template.html
@@ -4,5 +4,6 @@
4
:readonly="domain && domain.readOnly"
5
:error="error"
6
@input="onChange"
7
- @blur="editing = false"
+ @blur="inputBlurred()"
8
+ @focus="inputFocused()"
9
/>
src/components/properties/CellProperty/template.html
@@ -36,6 +36,8 @@
:domain="prop.ui && prop.ui.domain"
:type="prop.ui && prop.ui.type"
@input="onChange(arguments[0], i-1)"
+ v-on:focused="help = true"
+ v-on:blurred="editing = help = false"
</v-flex>
<v-flex
0 commit comments