Posts by Fabio Luis Alexandre • 167 points
13 posts
-
2
votes1
answer108
viewsA: How to configure routes in Angular
Checks whether in its component MainComponent has the tag <router-outlet></router-outlet>
angularanswered Fabio Luis Alexandre 167 -
3
votes1
answer1332
viewsA: Angular - Browser does not update after code changes
This problem may be folder permission, it tries to run as root, because ng serves is already by default hot Reload. It can also be browser version using. Updates nodejs version that can also fix.…
angularanswered Fabio Luis Alexandre 167 -
0
votes3
answers49805
viewsA: Place a div next to each other
You have to float: left on both Ivs. #DivLateral{ position:relative; float: left; border-width:2px; width:300px; height: 700px; background-color: peachpuff; } #DivA{ position: relative; float: left;…
cssanswered Fabio Luis Alexandre 167 -
1
votes1
answer240
viewsA: How to update Mysql results automatically with Javascript?
Legal if possible was to change to setInterval(doRefresh, 1000); And make sure your server has automatic connection shutdown if you don’t have to do it via code.
-
1
votes2
answers80
viewsA: Group of bootstrap Gird images staying out of loop
We’re missing a div closure below the </ul> <div class="container"> <div class="row"> <?php $i = 0; $row = 0; while($i < $count) : if($row == 6){ echo '</div><div…
-
1
votes2
answers702
viewsA: Fixed menu problem with bootstrap
Remove the class from the Nav tag fixed-top leave her like this <nav class="navbar navbar-expand-md navbar-dark bg-transparent"> Your menu won’t stay fixed.…
-
-1
votes2
answers160
viewsA: Crop photo when generating thumbnail php
I always use this library http://wideimage.sourceforge.net/ Here are some examples that help http://blog.thiagobelem.net/redimensionando-imagens-automaticamente-com-o-php…
phpanswered Fabio Luis Alexandre 167 -
1
votes1
answer406
viewsA: How to make the Laravel project see the Xios file?
My advice is to use vuex, besides being a good practice will help you not have bugs like this. In the internet has several examples is very simple and advantageous.
-
1
votes1
answer126
viewsA: I need to make my Javascript file see the Vue and Axios files
import Axios from 'Xios' is correct, you did npm install Xios, are you using it via npm? I believe this may be the error.
-
0
votes2
answers1212
viewsA: Nginx does not show index php
Hello, Use another Docker Nginx image, these new images are different settings, would have to look in the documentation. I use it like this and it works. nginx: image: tutum/nginx ports: - "80:80"…
-
-1
votes1
answer198
viewsA: Modal Bootstrap does not exceed page end
Places in the CSS class of modal the following: overflow: scroll; or overflow: hidden;
-
1
votes0
answers632
viewsQ: Request async Redux Sauce using Redux-thunk
Good afternoon guys, all right? I need help with actions on reduxsauce when it is a request async. The problem that the action needs to wait for the file to be solved, you need to use the…
reactasked Fabio Luis Alexandre 167 -
0
votes3
answers312
viewsA: Validate three fields
An option that can help you is to put in the form novalidate: <form name="form" novalidate> In the controller, in the role of submit you can capture whether the form is valid or not.…