Posts by Rafael Balmant • 196 points
17 posts
-
2
votes1
answer37
viewsA: Refresh of an <input> containing Database values
Good morning buddy Your problem is that your parole to trigger the action you want, only happens when you update the page, it probably should happen because you don’t have a Rigger (trigger) that…
-
0
votes1
answer64
viewsA: Error message when using ESLINT settings on two different Ides
The solution is simpler, it is necessary to exchange the interpreter version within the intellij IDE as follows In the Settings/ Preferences dialog box Ctrl + Alt + S, go to Languages and Frameworks…
-
1
votes1
answer64
viewsQ: Error message when using ESLINT settings on two different Ides
Hello people for some time I am facing the following problem: I have a certain ESLINT configuration, however, I work with a team and only I like to use intellij, and with the ESLINT settings they…
-
0
votes1
answer175
viewsA: Run code Node by pressing a button in html
Good morning buddy, first you are mixing things a little, no it is for the backend, what you want is that when you click a certain button it sends the request for the backend can send the email. On…
-
0
votes1
answer82
viewsA: Show button only from a specific <li> button
Hello friend I thought in a more generic way but I believe it will help you, in case I used the index of the array that is easily accessed in some methods that run arrays in JS, in case I used the…
-
1
votes1
answer76
viewsA: Pass received server data to Client Javascript
this is quite simple actually, you have to be aware that it is possible to take values of your HTML with JS, just use Document.getElementById or Document.getElementByClass among others. Let’s say…
-
0
votes1
answer87
viewsA: Doubt about the correct way to structure components - REACT
Good friend several factors can influence this... First when we know the right time to create an React component? Simple, a component is made for reuse so if you use a particular piece of code in…
-
1
votes1
answer53
viewsA: I can’t change the graph value with JS
Friend please when asking a question related to a specific lib please inform this in the question so that it can be a little clearer, so everyone can help you. I believe you’re using the lib chartjs…
javascriptanswered Rafael Balmant 196 -
0
votes3
answers534
viewsA: Using Dashboard Bootstrap Theme with React js
Expensive a good solution would be to use a package called Styled-Components, it is a package that gives you the freedom to create React components with your css style, I think a very good idea,…
-
1
votes1
answer1390
viewsQ: How can I change only one property of an object using the useState hook
I wonder how I can change only a specific property of an object using the useState hook const [value, setValue] = useState({value1: "abc", value2: "abcd"}) How would it be possible to change only…
-
0
votes1
answer211
viewsQ: How to click non-clickable HTML tags? Via console
Good staff I am with a doubt, I would like to click on non-clickable HTML elements, as for example I know that with the following code we can click a button knowing that I am working via console in…
-
1
votes1
answer918
viewsQ: Flexbox Align-items does not work
I’m having a problem, I don’t quite understand the concept of Align-items in flexbox, I don’t know why it’s not working, follow code: <div style="display: flex; align-items: center;…
-
0
votes1
answer61
viewsQ: DIV lose alignment if it is with a number of different lines
I’m trying to line up some divs but I realized that when the div that’s on the other side is not with the same line number on <p> it simply loses alignment, I am developing in Laravel using…
-
3
votes3
answers4175
viewsQ: How to change a PHP array’s key
I need to change the key of an array $task=array('Title' => 'Test', 'Description' => 'Description test') I need to change the key name Description Is there any way? I’m working with the…
-
0
votes0
answers69
viewsQ: Every time I click to go to another page, ask for the login again (LARAVEL 5.6)
Good afternoon, everyone Every time I go to another page my application asks to redo the login Follows route Route::get('/', function () { return view('welcome'); }); Auth::routes();…
-
2
votes1
answer5001
viewsQ: Apache2 does not interpret PHP
I normally installed PHP and APACHE2 but it does not interpret PHP code, follow test code: <?php echo "teste"; It returns me an "html" page with this written, and comes from a "print" written…
-
0
votes2
answers1165
viewsQ: Variable creation via Python user response
I would like to make the user insert a response from that answer would create a "variable" or not. I do not know if creating a new variable would be the best way, follow example: a =…