Posts by Thiago Sussumu Sato • 171 points
7 posts
-
1
votes2
answers78
viewsA: Exclude element from a dynamic object array
do not know what is the context of your need to remove the columns by the value "XXX", this would only be worth if this value "XXX" was some return of an API, but let’s separate your problem in two.…
-
3
votes1
answer71
viewsA: Validation of <input> with javascript
your code has small errors: no for vc have to do the interaction by splited and not by value in your if you have to ask for the value in alpha in cases "1" and "0" the IF operator must be…
-
0
votes1
answer31
viewsA: How to insert a dictionary with foreach using observables?
A solution for this case is you return observable in your service, make a map to a list of observables, so Voce can use forkJoin (link to the documentation…
-
5
votes2
answers772
viewsA: ...on a null Object Reference
you’re tetando to make a method call on an empty null object, you need to instantiate at some point, it depends on your implementation. private CadastroPresenter cadastroPresenter = new…
-
1
votes1
answer131
viewsA: TBODY content overwriting THEAD and TFOOT
Lucas, tbody is overpowering it because of position: fixed of your code, take them off it will work, if you are using Chrome to test the tfoot will appear only on the last page, they are adjusting…
-
0
votes1
answer51
viewsA: Fill meta Description via javascript Google interprets the code?
yes google bot will respect and behave like an html element. a good google search on "does google search process javascript", can help you deepen how far you can use JS on your site without…
-
4
votes2
answers356
viewsA: Changing the variable name during a repeat loop in Javascript
Instead of changing the variable you could use a list, improving control over the code. var a = []; for (var i = 0; i < 4 ; i++) { var x = new XMLHttpRequest(); a.push(x); } console.log(a);…