Posts by Victor Laio • 2,043 points
107 posts
-
1
votes1
answer76
viewsA: Choose folder with mvc c#
You cannot select a website folder using HTML Native + JS. You can only select a file or list of files to upload, but not a folder itself. Usually you won’t even be able to see the original file…
-
0
votes2
answers1871
viewsA: What does "At Execution Time" mean?
In computer science, tempo de execução or runtime (term in English), is the period in which a computer program remains running. The term Runtime can also refer to a virtual machine that manages a…
c#answered Victor Laio 2,043 -
1
votes2
answers44
viewsA: Pass selected values in a select to a div
Good night buddy, You can follow the same one that was already made for the city by adding an event of change() in the selectBox state: $('#estado').change(function () { var estadoSelecionado =…
jqueryanswered Victor Laio 2,043 -
0
votes1
answer26
viewsA: Save information about execution days
Good morning buddy, In companies that I’ve worked on both as a developer and other roles, it’s common practice to perform a scale register of equipment work, which in your case we’ll call scale…
-
0
votes1
answer27
viewsA: Serielize() jquery does not save variables
Try the following: Change formDetails.serialize(); for formDetails.toJSON(); and treat the controller to receive the JSON file.…
-
0
votes1
answer58
viewsA: How to create an index for viewmodel fields to be added dynamically
Create a partial that will have its structure for repetition and that will receive the VM of the fields: _Partialestruturacampos: @model…
-
0
votes1
answer323
viewsA: How to load viewmodel fields dynamically into Asp.net core mvc
I saw there in the comments that your for works in the View and not in the right Partial? Why don’t you run a for out of partial then and let it just as an item that the for will add? @for (int i =…