Posts by brupal89 • 19 points
11 posts
-
0
votes0
answers60
viewsQ: CSS - Switch does not change text when clicked
I have a checkbox that I turned into a switch so the user can choose "Yes" or "No": yes when it is clicked, not when it is not clicked. When the switch is not clicked, the "No" text appears as…
-
-1
votes1
answer30
viewsA: ASP.NET - Get selected Dropdownlist value from my Controller
I ended up working around this problem using a hidden variable: https://forums.asp.net/t/1998919.aspx?Access+hidden+value+from+View+to+Controller…
-
0
votes1
answer30
viewsQ: ASP.NET - Get selected Dropdownlist value from my Controller
I have a dropdownlist that is set in my view as follows: @Html.DropDownList("Exame", ViewBag.Exame as SelectList, "Escolha uma opção...", new { @class = "form-control", @name="ExameARegistar" })…
-
0
votes0
answers16
viewsQ: ASP.NET - Associate controller to empty partial view
I have an empty partial Razor view that does not depend on any entity in my class model. I intend to place two drodpowns with a button for each one that allows adding records. For this, I will need…
-
0
votes1
answer24
viewsA: ASP.NET - Choosing multiple records from a dropdown
I ended up finding an example that helped a lot. It is not quite what I want but it is already a great help. I leave it here for those who need:…
-
-1
votes1
answer24
viewsQ: ASP.NET - Choosing multiple records from a dropdown
I am developing a web application in ASP.NET MVC where I intend to have a page that allows the user to select one or more exams to sign up from a dropdown and present the chosen exams in a table. At…
-
0
votes1
answer70
viewsA: ASP.NET - Partial View inside tab does not invoke initializing method
I was able to solve this problem however: instead of using @Html.Partial, I had to use @Html.Action to invoke the Index action of the intended partial view. And then at the index of that view, I…
-
0
votes1
answer70
viewsQ: ASP.NET - Partial View inside tab does not invoke initializing method
I have a Razor Page with different tabs. And on each tab, I invoke a partial view in order to create a multi-step form. However, I noticed that the Index method (which is in its respective…
-
1
votes0
answers110
viewsQ: ASP.NET MVC - Changing input to dropdown and popular with SQL Server table values
I have a partial view (in this case, one of those Razor Pages) of type "Create" created from a table in SQL Server (which is stored as an entity of a model in my application). @model…
-
1
votes1
answer54
viewsQ: Alternatives to Microsoft Lightswitch
I have an application developed in . NET using a Microsoft extension called Lightswitch that unfortunately I can’t open or run. However, it has become obsolete. What are the best alternatives in…
-
0
votes1
answer36
views