https://codepen.io/rendev/pen/mddvoEB?editors=1010&fbclid=IwAR1sic77FJF5JXAO07yFDZHNTsPO5z_-vmsAJkZ4NDDFue62MDe0is4GjYg
here is the solution…pretty unexpected. i got it fromm facebook vuejs developers group
Latest posts made by sath26
-
RE: why do i get @change triggered when i try to edit text on input form
-
RE: Customizing Colors Using Sass Variables
$blue-7 : #1e88e5 !default
use this above primary and then assign the variable -
why do i get @change triggered when i try to edit text on input form
you can see for urself on the category list if u click anyone of the text u can get input form to edit but when u press any key like backspace or delete or space or any letter that chagne happen and u loose the input form. how can i get rid of the issue and edit normally.
i have tried to use event.prevent or even @change.stop but i cant get rid of the error.
here is the code with the problem
code for the problem -
RE: Error while building toggle functionality using button and input
thanks… but i have solved it… the problem was i used method instead of methods.@metalsadman
-
Error while building toggle functionality using button and input
https://codepen.io/sath08/pen/JjjXWKV?editors=1010
here i am trying to build edit label like in google keep where category has add icon on the left and and done icon on the right
when i click on add it has to focus on the input box and when i click on the cross icon where add icon was (i toggled it) it has to remove any text on input box and get back to initial state.
i get error forTypeError: _vm.focusOn is not a function
TypeError: _vm.focusOff is not a function
here this error arises on console however the functionality does work for first 2 or 3 clicks then the change in icon does not work and i keep getting these error
The solution I need is the focus on input must chnage icon from add to cross and get same result when I try to gain the functionality from add button. And vice versa when i click on outside and lose focus of input -
select option like stackoverflow tag input
https://codepen.io/sath08/pen/aeVMrX?editors=1010
i have tried to get the result in this code. however when i click on option after i typed for it…the string that i typed remains and i have to take it out again. see for urself in the demo when u try to use it like stackoverflow tag input(when u ask a question)
furthermore, i tried to use new-value-mode prop. but i dont want to use newly created chips. -
RE: qtable is not rendering
ok found out i was supposed to use empty array for multiple i.e. multiple:[]. i also updated codepen code.
-
RE: qtable is not rendering
plz help me through the codepen because i can see that mulitple data prop does have data passed from qselect and consist null initially @s-molinari
-
qtable is not rendering
this is my error
Error in getter for watcher “pagesNumber”: “TypeError: Cannot read property ‘slice’ of null”
i got this error in v1 of quasar. i have a qselect that has values that appear in the table based on what i have selected
i have taken reference from here. still it doesnt work
https://forum.quasar-framework.org/topic/1946/qtable-error-in-console/4https://codepen.io/sath08/pen/GVWLqe
i have a working copy of the code here with the bug