Posts by ivansnpmaster • 93 points
8 posts
-
1
votes2
answers283
viewsA: Use of Ng-Click and Hidden with Angular 7
It seems to me that you are using the same variable to control the open/closed state of all items in the list. Using the idea of the @user3453562 response, you can create an array of boolean the…
-
0
votes1
answer87
viewsA: Cefsharp - Paste Clipboard text into input at onclick event
I found an alternative to the problem from of that answer. The idea is to pass the content of clipboard from C# to Javascript using the class Clipboard. I created a method similar to the link above:…
-
-1
votes1
answer87
viewsQ: Cefsharp - Paste Clipboard text into input at onclick event
I have a input within a Iframe on a page .html in https with the event onclick calling a function: <input type="text" value="" id="TXT_PROTOCOLO" placeholder="Clique para colar o protocolo"…
-
0
votes1
answer100
viewsA: mat-table filter working only on the first character
You can use two-way data Binding in its input and apply the filter using the variable, thus: <input matInput name="search" [(ngModel)]="term" (keyup)="applyFilter()"…
-
2
votes2
answers289
viewsA: Auto play(audio) with Javascript
As I do not have enough points to comment, I put here: Chrome blocks autoplay with sound when the user has not performed any interaction with the page by security measures. As specified here, in New…
-
1
votes1
answer846
viewsQ: Format input value using [ngModel] and (ngModelChange) while typing
I ran it through the OR and PTSD to see if anyone else had the same thing, but I don’t think so. I have an app with a input so that a certain value is typed and formatted at the same time, as…
-
-1
votes3
answers426
viewsA: Problems with Angular Material
Every component that will be used as dialog must be placed in declarations and in entryComponents within your app.module.ts, as follows: import { BrowserModule } from '@angular/platform-browser';…
angularanswered ivansnpmaster 93 -
1
votes12
answers79762
viewsA: Formatting Brazilian currency in Javascript
Although the question already has an answer, I leave an alternative for the next people who open this question. I modified a little the code of lynx_74 to format text regardless of input text…
javascriptanswered ivansnpmaster 93