Posts by Edson Filho • 92 points
12 posts
-
-1
votes1
answer58
viewsQ: How to start Select based on an Angularjs Scope Model
I have the following code (with the listing working OK): <select ng-model="elementoAtivo.tipo" ng-init="elementoAtivo.tipo = elementoAtivo.tipo" ng-options="a.valor as a.opcao for a in…
-
1
votes1
answer86
viewsA: Error generating build in android release mode on IONIC -V1
Change the version of your Cordova, the methods that are being used by your plugins that are not supported in this version of Cordova, I recommend doing Downgrade 1 - npm uninstall -g cordova 2 -…
-
0
votes1
answer162
viewsA: Where should I start designing my software?
Initially speaking generally, the processes you should look for to get general and quick knowledge is about the 'software lifecycle', which is: Requirements -> Analysis -> Project -> Coding…
-
1
votes1
answer39
viewsA: Is it possible to count license validation days without depending on the system date?
I wanted to add as a comment, but I have no reputation, it’s not a technical answer, so let’s go: Since you don’t want to access the system date, why don’t you try another approach? you can create a…
-
0
votes2
answers67
viewsA: VS Code Configuration for Mac
Press F1 on vscode Type: Workspace Go to: Preferences: Open Workspace Settings Type: files.exclude Add new File entries that you want to 'Delete' / 'Hide' Ready…
-
0
votes1
answer2051
viewsQ: Difference and good practices, either global or React Native context
I’m new to React Native and would like to understand in an objective way: What’s the difference between using global.variavel = foo; or create a context api? 'React recently implemented Context Api…
-
0
votes2
answers281
viewsA: Jquery works on console, but does not work on file
Check the order of reading the files, Wordpress has a lot of these problems, where you are editing may be being loaded even before any jQuery, these scripts is good to put so that they are read…
-
1
votes1
answer75
viewsA: How to Mount Grid Bootstrap
col-xs-* were discarded in Bootstrap 4 for col-*. Substitute col-xs-4 for col-4 and will function as expected. Check here the PEN I did for your case…
-
1
votes2
answers235
viewsA: Borders on each part of the menu
you can edit the following class in your case by adding the size of the border, followed by the style along with the color: #options a{ border-left: 1px solid red; } Since your margins are all left,…
-
0
votes2
answers162
viewsA: Remove Class from an element two levels above the clicked element
Hello Fabio the approach @Sam made is a great. Also note that if you want to remove 'dark blue' from all elements then you can get away with something as simple as…
-
0
votes2
answers852
viewsA: Close sweetalert2 when finding the data
Have you checked to see if anything’s coming result? And .then that is: What will be executed When closing, either by clicking the ok or cancel button, to close a modal you must call the Hide…
-
0
votes1
answer24
viewsA: Upload video files with Angularjs
Our friend, 2018 using Angularjs, but anyway, come on, I’m also in a project that uses Angularjs ahahah Try to use HTML5 <input type="file" id="file" name="file"/> <button…