Posts by Elvis Reis • 46 points
3 posts
-
0
votes2
answers45
viewsA: Angular Compomente Personalized emitEvent: false
Solved the problem was in writeValue traded writeValue(v: any): void { this.value = v; } for writeValue(v: any): void { if (v !== this.innerValue) { this.innerValue = v; } }…
angularanswered Elvis Reis 46 -
0
votes2
answers45
viewsQ: Angular Compomente Personalized emitEvent: false
I need my custom component when making a value assignment it does not send events, when I set it in patchValue or setValue. patchValue { onlySelf: true, emitEvent: false } Stackblitz Demo when…
angularasked Elvis Reis 46 -
3
votes1
answer386
viewsA: Using Elasticsearch to do complex searches and then get the Ids for Mysql query
I use this way to make my queries because the relevance is much bigger and faster with the ids in hand I do the query in mysql to return a result: WHERE produtos.id_produto IN (id1,id2,id...) ORDER…