Posts by Demian Bibiano • 198 points
6 posts
-
-3
votes3
answers799
viewsA: Aligning Twiter bootstrap buttons inside a Table
I think if you add one text-align: center; in <td> resolve (because you don’t use button). in case for testing: <td style="text-align: center;"> <a href="@Url.Action("Edit","Barcos",…
-
2
votes2
answers50
viewsA: Pass values from checkboxes to an element contained in a div
Your problem was time to get the name of the field, the name of your checkboxes contains "number" and are not just "number", follow the code, tested and working! <script…
-
2
votes1
answer304
viewsA: How to manipulate coordinates of an html page freely
Opa! I do not know if I understood the question well, but in your case I created the function changeSquare and called inside the onload: <!DOCTYPE html> <html> <head> <meta…
-
0
votes2
answers397
viewsA: Sum values of a column td
Hello! follow the function below, just put it on your page and call when you want, it should work! function calculaFinal(){ var valorFinal = 0; //pega todos os campos de imposto dentro da table…
-
1
votes1
answer123
viewsA: Replace input text field by button maintaining filter functionality in Javascript
Hello, follow the code, I just switched from keyup to click, $(this). val() to $(this). attr("value"), the #filter in the jquery event, to the class. search (because it does not take more than one…
-
0
votes2
answers12697
viewsA: .replace() in jQuery object
Opa, I checked here and tested with a local variable, Then I took the value with your own code to test, and it worked! (you can run in the browser to test, just press F12 and go to the Console) var…