Posts by wladyband • 4,694 points
426 posts
-
1
votes1
answer706
viewsQ: The `useMongoClient` option is no longer necessary in Mongoose 5.x, Please remove it
I tried to connect to the bank using these settings; 'use strict' var mongoose = require('mongoose'); mongoose.Promise = global.Promise; mongoose.connect('mongodb://127.0.0.1:27017/ep', {…
-
1
votes1
answer1366
viewsQ: How to connect to Mongodb Compass Community?
I installed mongodb on my machine and along with it came the Compass Community program. When I ran mongod.exe you can see the name of the host and the port, so I put the name of the host in the…
-
2
votes1
answer37
viewsQ: Problem in applying CSS Animate
I’m trying to implement the Animate.css feature as shown in this documentation below. ANIMATE.CSS I’m not able to implement this feature, I did the step by step and it didn’t work. I didn’t put…
animate.cssasked wladyband 4,694 -
2
votes2
answers230
viewsQ: How to put the boostrap menu in the middle of the screen?
Look at the picture; Click here How do I get this menu to be in the middle of the screen? The difficulty is because I’m using Bootstrap 4, I’ve tried everything. I wanted it to look like this below;…
-
-1
votes3
answers3126
viewsQ: How do I customize the color of Bootstrap’s Navbar?
Note the following code; <nav class="navbar" id="navbar"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed"…
-
4
votes1
answer13010
viewsA: How to adjust the Mysql Time Zone?
I just solved. In the file persistece.xml was like this <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/boleto"/> But now it’s like this; <property…
-
4
votes1
answer13010
viewsQ: How to adjust the Mysql Time Zone?
I took an old project from github, and the project was a JSF application that was using the old mysql artifact as you can see below; <dependency> <groupId>mysql</groupId>…
-
-1
votes1
answer664
viewsQ: org postgresql util Psqlexception ERROR syntax error at or near auto_increment in a JSF project
I wonder what that problem might be? 2018-04-30 14:50:08,218 [http-nio-8080-exec-8] WARN org.hibernate.ejb.HibernatePersistence - HHH015016: Encountered a deprecated…
-
3
votes1
answer550
viewsQ: Spring Boot Project with 404 error
This is my controller package com.iape.cobranca.resource; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import…
spring-bootasked wladyband 4,694 -
-2
votes1
answer294
viewsQ: How do I make an RSS feed work in Angular 4?
The code below is working on a page HTML <html> <head> <title>Titulo da página</title> <meta charset="utf-8"> <script type="text/javascript"> rssfeed_url = new…
-
1
votes1
answer2196
viewsQ: how to place Rss feed in an HTML page?
Look at the website. Free RSS Widget I have the following code; <!-- start sw-rss-feed code --> <script type="text/javascript"> <!-- rssfeed_url = new Array();…
-
2
votes4
answers6996
viewsQ: Typeerror Cannot read Property 'name' of Undefined at Angular 4
My application is working perfectly, the only thing wrong is taking this error message; MidiaExibirComponent.html:13 ERROR TypeError: Cannot read property 'nome' of undefined at Object.eval [as…
-
1
votes1
answer957
viewsQ: How to include an external Javascript file in the angular?
In my old projects I had conditions that take advantage of most of my css codes when I started creating my projects in Angular, while searching I learned of a file called Styles.css that is inside…
-
1
votes1
answer100
viewsA: How to run a Restfull project on the Tomcat server?
have to add this artifact <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId>…
-
0
votes1
answer100
viewsQ: How to run a Restfull project on the Tomcat server?
I created a simple project, and manage to run it in Springtools, to be able to run it also on the server Heroku and now I’m trying to run it on Tomcat server on my local computer. i put Tomcat to…
-
0
votes1
answer382
viewsQ: How do I keep my Angular application running permanently?
To keep the Nodejs server running permanently on the computer is the following procedure; $ npm install forever $ forever start server.js However, how do I make my Angular application run…
-
0
votes2
answers3232
viewsQ: How to implement an Alert in the angular HTML page?
As you can see in the figure below the Angular component is composed of component, css and Html in the midia-cadastrar.component.html file tried to put a simple implementation of Alert as you can…
-
0
votes1
answer159
viewsQ: Show all Game cards in Javascript
Be able to find a memory game in Javascript and made some changes as you can see on my repository What I would like to do is that when starting the Game it showed all the images and after 3 seconds…
javascriptasked wladyband 4,694 -
0
votes0
answers32
viewsQ: How to Fileupload Video at Angular 4?
I created a API Java to fileupload any file, it’s something simple, it just takes any selected image and sends to C: images, I’m using with Angular 4, my goal is to make this implementation with…
-
1
votes1
answer79
viewsQ: Difficulty Working with Thread in Spring Boot
See how my controller is @PostMapping("/anexo") public DeferredResult<String> uploadAnexo(@RequestParam("files[]") MultipartFile[] files){ DeferredResult<String> resultado = new…
-
0
votes1
answer1782
viewsQ: Implementing Search with Angular 4
Look at the picture The user will type in the title field to perform a search in the table, but an error appears in the browser console The error message informs that the problem is in the search…
-
0
votes1
answer126
viewsQ: difficulty to list data in angular 4 datatable
As the title says, I cannot load the database records into the Primeng datatable. No error messages appear on the Visualcode console, no error messages appear on the internet browser console, no…
-
0
votes1
answer432
viewsQ: How to implement a bootstrap menu in an Angular project?
I put the following code and it didn’t work; <nav class="navbar navbar-default"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand"…
-
1
votes0
answers440
viewsQ: How to put RSS images in news?
I am currently working as a Freelance programmer with very little experience, so the client requested to put on his page a UOL news block, so I accidentally found this site. Free RSS Widget Here you…
-
1
votes1
answer130
viewsQ: The page was loaded through the HTTPS, but requested an unsafe Xmlhttprequest endpoint
I’m calling a home API from the implemented Https application for Http Rest API. I wrote the logic in Vuejs. Web service call failed with the message below. Vue-Resource.js:1091 Mixed Content: The…
-
1
votes2
answers75
viewsQ: how to work with Bootstrap table?
Look at the figure How do I leave the date next to the word Dollar? That is the code! <div class="row"> 12/12/2000 </div> <div class="row"> <table class="table"> <tr>…
-
0
votes1
answer185
viewsQ: How to change position of a table in vuejs
It is currently found like this: It was supposed to be like this; I’m having trouble, can someone help me, please? This is the source code. <!DOCTYPE html> <html…
-
0
votes2
answers1235
viewsQ: How to access a list within a list in Vuejs?
I’m having difficulty listing the values of a Json, but it results from it is an array within an array as you can see below; { "status": true, "valores": { "USD": { "nome": "D\u00f3lar", "valor":…
-
3
votes2
answers444
viewsQ: How to work with Primeng Editor?
Look at the link Edidor Primeng Would anyone know how to disable or remove the image upload button…
-
0
votes1
answer62
viewsQ: How to work with current German at Angular 4?
My goal is to have an implementation that the user starts typing is shown in real time a validation message counting the characters being typed, and I do not know how to do this, I know there is the…
-
1
votes1
answer1270
viewsQ: Problems configuring CORS Spring Boot permitted origin!
That’s the error message you’re giving; I’m having trouble getting my Front-End API to access my Back-End API which is a Spring Boot project, I’m sure my problem is not my Fron-End API, the problem…
-
1
votes1
answer251
viewsQ: Error: That is not Equal to the supplied origin
I’m trying to get records that are in an API on the server Heroku with the following URL https://mdw-arm-wladimir.herokuapp.com/noticias But when I receive this url in my Angular project it…
-
1
votes1
answer294
viewsQ: How to use SQL instead of JPQL?
This week I went through a problem, to be able to build a Java API using JPQL, but my Java API is not yet completed and I can already predict that in the future my project will need reporting, and…
-
1
votes1
answer8428
viewsQ: java.sql.Sqlfeaturenotsupportedexception error: org.postgresql.jdbc.PgConnection.createClob() method not yet implemented
I created my Spring Boot project, I did not create any Java class and is already giving error, my problem is to connect the project with the Postgresql database. see my pom.xml file <?xml…
-
1
votes1
answer1034
viewsQ: How to delete records automatically with postgresql?
Recently manage to catch a project that is a blog, the user will perform the posts of various news, however I am using the server Heroku with the free account that entitles there are only 512 Megas…
-
0
votes1
answer247
viewsQ: How to change the colors of a Jquery implementation?
Note the file below; https://jsfiddle.net/9ub9yk7t/1/ I’ve tried several ways to change the colors that belongs to the H3 tag from blue to red and I’m not succeeding, I can change the other things…
-
0
votes1
answer689
viewsQ: How to work with Json on Vuejs?
Look at the code: Address table Notice that the application is working perfectly, by clicking on any address it is automatically directed to the Google page because of this method right below;…
-
1
votes1
answer42
viewsQ: How do I direct the google bookmark to a page?
I manage to implement a google bookmark, and also manage to implement a link in the bookmark, when the user clicks on the bookmark it is automatically directed to another page, the only problem that…
javascriptasked wladyband 4,694 -
0
votes1
answer584
viewsQ: How to create routes in tables with Vuejs?
My page is working perfectly, it today behaves as follows; The user clicks on the textSearch to perform a search, and the table will only load the search requested by the user. Look at my page!…
-
1
votes1
answer580
viewsQ: How to work with vueJS search method?
You realize the search is working perfectly: https://jsfiddle.net/wladyband/8qor5c0x/ I wanted you to only list the records when you typed something in search input, i know what place to make this…
-
0
votes1
answer54
viewsA: Problems with Jquery Table!
The problem was only to organize imports in the right way <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"…
answered wladyband 4,694 -
0
votes1
answer54
viewsQ: Problems with Jquery Table!
See the code below: $(document).ready(function() { $('#table_busca').DataTable(); }); <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> <script…
asked wladyband 4,694 -
0
votes0
answers128
viewsQ: Problem in saving states according to the city in Angular 4
When selecting the state it is perfectly loading the cities according to state the problem is at the time of saving it exchanges the information, need help to fix the algorithm, I believe it is…
-
0
votes2
answers744
viewsQ: How to format select option with bootstrap in an Angular?
Note the image below: You can see that the field ZIP CODE is quite different from the countryside State and City, I am aware that the field settings ZIP CODE is due to the Angular Primeng features…
-
0
votes0
answers50
viewsQ: Problem with Angular Headers import
I was with my project working until one fine day a fragment of my project solved gives import problem and generated this error while compiling: While doing a brief search on the internet I found…
-
0
votes1
answer208
viewsA: Problems implementing Dropdown Waterfall List with Angular 4?
As I already know from the answer I decided to put here to contribute to the forum; Service archive: import { Cidade, Estado} from './../core/model'; import { Injectable } from '@angular/core';…
-
0
votes1
answer208
viewsQ: Problems implementing Dropdown Waterfall List with Angular 4?
As the title says, I’m having difficulty implementing the Dropdown Cascade, it’s about loading the first Dropdown with the state and the second Dropdown will be automatically loaded according to the…
-
0
votes1
answer4901
viewsA: Locale p-Calendar primeng Angular
You can remove these lines of code from your component: this.pt = { firstDayOfWeek: 0, dayNames: ['Domingo', 'Segunda', 'Terça', 'Quarta', 'Quinta', 'Sexta', 'Sábado'], dayNamesShort: ['Dom', 'Seg',…
-
0
votes1
answer100
viewsQ: How do I work with Arrays using Angular 5 in the log console?
I’m trying to implement a Multiselect Dynamic dropdown on Angular, it’s like it’s selecting state according to cities, if I select for example PE in the first dropdown list to it will return me…
-
1
votes1
answer175
viewsQ: How to work with Angular Arrays with screen printing?
I still know little of Angular and know only the basics, look at the code snippet: listarTodas(): Promise<any> { return this.http.get(this.cidadesUrl) .toPromise() .then(response =>…