Posts by Marcos Barbosa • 91 points
7 posts
-
0
votes0
answers52
viewsQ: Angular 5 does not listen to file changes
I am having problems with angular 5. When changing the html of a Component is not recompiling the code, I have to stop and restart the compiler to show my change. I am using the ng build --watch…
angularasked Marcos Barbosa 91 -
1
votes2
answers395
viewsA: Progress bar on web system
It is not for file upload, it is to update the progress of a request that takes a lot. I have already managed to resolve. But just for the record, the idea was to get the status of a request that…
progress-baranswered Marcos Barbosa 91 -
1
votes2
answers395
viewsQ: Progress bar on web system
Does anyone know a way to make a progress bar on web system? In case my progress bar is not for file upload, it is a task that takes a while, then it would be nice a progress bar for the user not to…
progress-barasked Marcos Barbosa 91 -
4
votes2
answers2413
viewsQ: Configure Cordova Sqlite Storage
I am unable to configure the plugin Cordova Sqlite Storage. The steps I follow are: Install the plugin with phonegap plugin add https://github.com/litehelpers/Cordova-sqlite-storage Copy…
apache-cordovaasked Marcos Barbosa 91 -
2
votes2
answers2490
viewsQ: Phonegap x native application
Phonegap x native application: What are the main advantages and disadvantages of the two.
-
1
votes2
answers674
viewsA: Select and dynamic div
Create a php file and save as vehicles.php $tipo = $_GET['tipo']; //Conexão //Conecta ao banco de dados $con = mysql_connect("localhost", "root", "dev") or print (mysql_error()); //Seleciona o banco…
-
0
votes2
answers674
viewsA: Select and dynamic div
Dynamic select <script type="text/javascript"> var option = null; $(document).ready(function() { $.get('veiculos.php?tipo=marcas', function(marcas) { //Preenche select marcas…