Posts by Bruno Miqueas • 127 points
17 posts
-
1
votes1
answer52
viewsQ: Asynchronous Function in C# Web
I am making a web page that does a database search and using in only one machine everything is normal, however, when the search is used more than once, as for example, in two different machines, the…
c#asked Bruno Miqueas 127 -
2
votes0
answers81
viewsQ: Phonedailer function with Serialport
I am implementing a c# application that needs to be automatically dialed. Searching I found a function Phonedailer.Open that receives in parameter the number of the phone. However I do not know the…
-
1
votes1
answer57
viewsQ: Data-Bind and Onclick on the same button
I have a button that has a data-bind, calling a function JS that is working perfectly. However, I need to call another function on the same button, only on C#, in class CSS of my page, if I leave…
-
0
votes0
answers39
viewsQ: Cell does not show all information(.CSV)
I am generating a file . CSV in my project in c#. Most information is correct, but when it has a large number, the cell does not show all: and the file is generated like this: Call the Create…
-
1
votes1
answer192
viewsQ: Write ; in . CSV without separating the cell
I have a C# project that is normally generating a file with extension. CSV, however I want to write a ;(point and comma) but it does is to separate the cell. There is some way to write without that…
-
0
votes1
answer218
viewsQ: Two on-change in a select
Good morning, I have the following html code: <select class="form-control" formControlName="tipoped" on-change="PesquisaPrazo('prazo', this.digitacaoForm)"…
-
-1
votes1
answer54
viewsQ: Variable copy in angular 2(typescript)
I need to make a copy of an array without using reference Example var a = ["teste", "teste1"]; var b = a; a[0] = "teste3"; b[0] = "teste4"; console.log(a) //mostrar teste3 console.log(b) //mostrar…
angularasked Bruno Miqueas 127 -
1
votes1
answer52
viewsQ: Name does not get fixed in variable
Good morning! I have a survey that puts the names of some products in a variable, but if I search another product, it subscribes the new product in the old, so: Search for 1 product: Search for 2°…
angularasked Bruno Miqueas 127 -
2
votes2
answers683
viewsQ: Remove table line html with typescript
Good morning!! I own a table html and need to delete a line from it with a function typescript(angular 2, preference)... Follows the Table Code: <div class="col-md-12"> <div…
-
-4
votes1
answer334
viewsQ: How does the angular router work?
Good morning, I’m having doubts about the router of angular2 to pass values to another page... I don’t know how to use it or how it works, can you help? I have seen several examples in forums, but…
angularasked Bruno Miqueas 127 -
1
votes3
answers223
viewsQ: Click and block inputs function
Good morning!! I come again to ask questions... I need to know how I do so that when I click a button, it will be able to block(disabled) all inputs or selects that I want, basically, maybe *ngIf…
-
2
votes1
answer777
viewsQ: Pass value to another angular page
Good morning!! On a given page I have a button that takes code and name of a customer and I need to pass this information to an input of another page: Page of the function that takes code and name…
-
1
votes1
answer31
viewsQ: Click function with a model variable
Hey, guys, I got a model receiving the value of a web api perfectly, but the problem is that I have a function that needs to catch the value of model and put in the click function as parameter and…
-
0
votes0
answers31
viewsQ: Two subscribes in the same role?
I have a function in Typescript where your return is directed to an input in formGroup, but I cannot use the same return in another field, only if you have the same name. I need to use the return in…
-
2
votes2
answers3741
viewsQ: Take a select value at the angle
Good morning! I need to take a value from one select to pass the value to the other, but I am new in angular and html... Code of the select: <div class="col-md-3"> <select…
-
1
votes0
answers71
viewsQ: Error in passing json value from web api to ngfor
This is the error you are making when calling the api. think this is something in exiting the api or receiving it in my other project? ERROR Error: Cannot find a supporting differ Object '[Object…
-
0
votes1
answer67
viewsQ: passing webapi value to select html in angular 2
i have a typescript function that receives a json value from my webapi, and I need to pass this result to a select in html... Service: teste: teste[]; public getNomes(type: string, formGroup:…