Posts by Leonardo Giulianetti • 90 points
6 posts
-
0
votes0
answers37
viewsQ: Formarray does not print on my Reactive Form
I’m new to Angular and I’m having a really hard time getting a Formarray into my form. Summing up what I did was: Create 2 Formularies: the main (valForm) and another dynamically created…
-
0
votes0
answers344
viewsQ: Set field value Select dynamically in Angular reactive form
I have the following select field: .html <div class="col-md-4"> <div class="mda-form-group"> <select class="mda-form-control" formControlName="state"…
-
1
votes0
answers53
viewsQ: How to configure proxy with user and password in Ionic?
I’m trying to configure the Ionic proxy to download projects here in the company but something is wrong. In npm the proxy is set and works well (see file .npmrc):…
-
1
votes0
answers41
viewsQ: How to return undeclared View values in Model to Contoller by post method
My controller is declared as code below: public ActionResult Create([Bind(Include = "a,b,c,d,e")] Proposal proposal, int prjId, int[] array) { if (ModelState.IsValid) { proposal.f = prjId;…
-
-2
votes1
answer426
viewsA: Take input values in html for object in ASP.NET MVC
Good evening to you... I’m understanding that Voce is working with MVC... so it would look something like this the form triggers the Controller that must execute the following code: [HttpPost]…
-
4
votes1
answer549
viewsQ: Ajax Request Does Not Work - Success Does Not Work
I did the following function: $("#CategoryList").change(function () { $("#SubCategoryDropDown").empty(); $.ajax({ dataType: "json", url: '@Url.Action("GetSubCategory", "ProjectSubCategories")',…