Posts by Victor César • 149 points
21 posts
-
0
votes0
answers39
viewsQ: Scroll Ionic 3 Ios
I’m having trouble with this scroll, creating a black image at the bottom of the page. When I drag it up, it appears, when it drags down the black image.…
-
0
votes1
answer42
viewsQ: Eletron overlay other screens
Guys I have an application developed in "Eletron" would like to know if it is possible to superimpose another application when in the background. Ex. Every time the application receives an order,…
node.jsasked Victor César 149 -
0
votes1
answer186
viewsA: Onesignal Web Push
Here’s how I handled it. I created on the site onesignal the web push of type "Typical Site" and the functionality to subscribe will only work if your url is "https". Note: should be added the url…
-
0
votes1
answer186
viewsQ: Onesignal Web Push
Guys I’m trying to use Onesginal Web but it doesn’t work, appears the icon below but does nothing. Already this all configured in the site "onesignal" Onesignal is making a call I believe should be…
-
0
votes1
answer201
viewsQ: Ionic 3 plugin_not_installed
I have an IONIC 3 application running normally when I run: ionic cordova run android. The problem is when I run ionic cordova run android --prod of the following error:…
-
3
votes0
answers546
viewsQ: Bematech with Nodejs
I’m trying to connect printer Bematech MP-4200 TH with Nodejs but I can’t. var stream = fs.createWriteStream('/dev/ttyACM0', { encoding: 'utf16le' }); When I run nothing happens, it’s not printing.…
node.jsasked Victor César 149 -
-1
votes2
answers312
viewsA: Ionic 3 build error
Galera solved as follows: delete the local project and re-download my repository.
ionic3answered Victor César 149 -
2
votes2
answers312
viewsQ: Ionic 3 build error
Guys I have a project done in IONIC 3 from one hour to another does not build anymore. Follow the image:…
ionic3asked Victor César 149 -
2
votes1
answer121
viewsQ: Ionic 2 Onesignal IOS
I have a project developed in IONIC 2 and managed the version for IOS but I have a problem with Onesignal. I tried to reinstall the plugin by Ionic but problem still continues.…
-
0
votes2
answers102
viewsQ: Ionic2 root Nav
Guys I’m developing an app in Ionic 2 and on the first screen Page1 and executed: this.app.getRootNav().push(Page2) My problem is that when user click back button I want you to run the method…
-
1
votes1
answer129
viewsQ: Location Accuracy Ionic Plugin 2
I’m using an API Location Accurancy Ionic v2 follows the code: cordova.plugins.locationAccuracy.canRequest(function(canRequest){ if(canRequest){ cordova.plugins.locationAccuracy.request(function…
-
0
votes1
answer262
viewsQ: Ionic v2 white screen
I am making an application using Ionic v2 and this working perfectly, my problem is that when Gero for production -> Ionic cordoa build android --Prod. In some cell phones begins to give White…
-
1
votes1
answer238
viewsQ: Ionic 3 Prevent app Exit
I made an application using Ionic 3. When this on the main screen and in case the user clicks the back button the application is terminated. I wanted to put a "Prevent appexit" that checks that the…
-
0
votes2
answers36
viewsA: Running Angullar 2 on http-server
I was able to solve by adding into the /dist . htaccess folder <IfModule mod_rewrite.c> Options Indexes FollowSymLinks RewriteEngine On RewriteRule ^index\.html$ - [L] RewriteCond…
angularanswered Victor César 149 -
0
votes2
answers36
viewsQ: Running Angullar 2 on http-server
I have an application in Angular2 and was generated /dist where it contains the HTML, CSS and Javascript code executed the code using http-server and Tomcat. My problem is when I turn my routes,…
angularasked Victor César 149 -
0
votes1
answer786
viewsQ: Angular 2 in production
Eai guys,I have an application in Angular 2 that I want to publish it on the site www.umbler.com hosting server but do not consig, have put on the server in Nodejs but does not work. I don’t know…
-
0
votes1
answer391
viewsQ: Set Floatingactionbutton size on Android
private FloatingActionButton createButton(int id) { FloatingActionButton fab = new FloatingActionButton(this); fab.setId(id); fab.setOnClickListener(new View.OnClickListener() { @Override public…
-
0
votes0
answers328
viewsQ: Campo dinamico Android
<RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:id="@+id/relativeLayoutPacient" > <TextView…
-
2
votes3
answers572
viewsQ: How to map an entity with a composite key using JPA?
@Entity @Table(name = "USUARIO") public class Usuario implements Serializable { @Id @GeneratedValue(strategy= GenerationType.AUTO) @Column(name = "ID") private Long id; @Column(name = "USER_NAME",…
-
1
votes1
answer113
viewsA: Search and replace mongodb database
Be able to solve recursively, passing through each element and replacing. function iterate(obj, stack) { for (var property in obj) { if (obj.hasOwnProperty(property)) { if (typeof obj[property] ==…
-
2
votes1
answer113
viewsQ: Search and replace mongodb database
I have several collections in mongodb and would like to do a "search/replace" for all collections and for each field that is the string "http:" replace with "https:" Example: var object = { "_id" :…