Posts by ketts • 88 points
8 posts
-
3
votes1
answer238
viewsQ: Table creation error (ORA-00904)
I don’t know if it’s my glasses that are in trouble, but I can’t see where I’m going wrong. If you can help me. I read that the mistake could be happening by the way I’m declaring mine PRIMARY KEY,…
-
1
votes1
answer56
viewsA: CSS side menu: VUE component content pushed right
In the end, I managed to solve my problem. I’ll leave the functions I used here, in case I ever help someone. I added a checkbox v-on:click activating a function to check whether checked is true:…
-
1
votes1
answer56
viewsQ: CSS side menu: VUE component content pushed right
What I want is that there is no overlapping of the side menu on top of my main content, but that this is pushed to the side when the menu is opened. I know how to do this with images, using Section,…
-
0
votes1
answer27
viewsQ: VUEJS: Property or method "indicatorTitle" is not defined
I have a simple variable and I want to pass it to my v-for. However, I get the error "Property or method "indicatorTitle" is not defined on the instance but referenced". The way I’m trying: <div…
-
-1
votes1
answer68
viewsQ: CSS: top bar aligned
I need the h6 "BI" stand next to mine span menu, but with considerable spacing. I tried to do with div and li, but anyway, "BI" ends up below the span. .topnav { background-color: #111; overflow:…
-
-1
votes1
answer27
viewsQ: Vuejs: no-unused-vars
I have a simple code in Vuejs and I need to import a component. I took a look at the documentation and looked it up online, but I can’t see where I’m going wrong. From what I understand, just use…
-
0
votes3
answers156
viewsA: How to make the counter work to allow three attempts?
You are adding more numbers to your counter, that is, every time your counter receives another number, because of the "+" sign in that part: contador = contador + 1; This is creating an infinite…
javascriptanswered ketts 88 -
0
votes1
answer35
viewsA: If as function
I don’t know if that’s what you meant, but try it this way: if(ativar.ativo == 'sim'){ //função } Don’t forget to always declare variables with the first lowercase letter ("var activate = {}")…