Posts by Walker de Paula • 36 points
3 posts
-
1
votes2
answers6659
viewsA: Javascript function to uncheck/clear all checkboxes selected from a button
There is a simpler, more performative way to do this without using a for to deselect these selected fields. Take a look: function myFunctionClear() { var inputs = $('input[type=checkbox]');…
-
0
votes1
answer52
viewsA: Table With Input type Upload File only one line listens to the event
If I understand your question, I believe the problem happens because ID’s should be used only once inside the document. You can select the input elements this way: $('input[type=file]') Also…
javascriptanswered Walker de Paula 36 -
1
votes1
answer47
viewsQ: (Backbonejs) Run a View after server return
In my application I have 2 Views. One of them is sending the data to the server when the client clicks on Submit. The other needs to wait for that reply and run to work with the 'updated' data'. How…