Posts by Wesley Ferreira • 101 points
6 posts
-
1
votes1
answer777
viewsA: White space in bootstrap menu
The problem is in the size of the element, previously I can say that the element . navbar-Collapse.Collapse is not occupying the total size of . navbar, if this is correct, do it as follows:…
cssanswered Wesley Ferreira 101 -
1
votes1
answer4041
viewsA: How to pass Viewbag values to a Javascript Function in an ASP.NET MVC application
Hello, good night. From what I see your logic is correct, the only item that makes you not able to carry data (decimals, in this case) between Controller and Javascript, is that the decimal…
-
1
votes1
answer52
viewsA: Searching for the next table after a clicked element
Hello, good night. To be able to select the table closest to your button, I would recommend you create a div for each created category, in this you would group all the buttons and their respective…
-
2
votes2
answers2552
viewsA: Claims Identity MVC
Responding in parts. 1 - At some point you will have to search your database for Claims to add it to the context of the logged-in user. Partially you are doing this, missing some things I will…
-
0
votes2
answers656
viewsA: Show button when hovering javascript
Apparently you are not using the id property, passed as a parameter in the function. Look at you: Its function: <script language="JavaScript"> function mostrarElemento(id, visibilidade) {…
-
2
votes2
answers235
viewsA: Fault/Doubt event change jquery
As Bruno said, closing the modal is removing the events from the generated html element. Another suggestion for resolving it would be: $(document).ready(function(){ $(document).on("change",…