Posts by Xablau Developer • 1 point
4 posts
-
0
votes3
answers1253
viewsA: How to set the first value in the combo?
Try placing the value attribute of the select tag with the value you want it to load selected: <div class="col s6"> <label>Escolha seu estado</label> <select…
-
0
votes1
answer645
viewsA: Angular 6 How to leave default field in select?
Try placing the value attribute of the select tag with the value you want it to load selected: <select [(ngModel)]="marcaSelecionada" class="form-control" name="marca" value="marcaSelecionada"…
-
0
votes1
answer44
viewsA: Windows service sharing information with a Rest
It is possible yes. First, install that Nuget in your Windows Service project. After that, just make use of the System.Net.Http.Httpclient. Below is an example of how to call in a very simple way.…
-
0
votes1
answer127
viewsA: Data typing
The return of the List() method of your service registration is of the type "any". That is, it is dynamic. This type of method is interesting to be used when we need to describe the type of…