Posts by Bruno Rayol • 43 points
9 posts
-
0
votes1
answer163
viewsQ: Use 2 Onkeyup in the same Input
I got a Javascript code that fits me perfectly, but it is divided to be used in two inputs, but I need him to be executed in it input. Below is the code. It runs in the event OnKeyUp, then I wonder…
-
0
votes4
answers761
viewsA: How to simulate onclick checkbox
Good people after much studying, I managed to solve using the function below. Function marcardesmarcar() { $('.marcar').on('click', function () { if (this.checked) $(this).attr("checked", false);…
-
1
votes4
answers761
viewsQ: How to simulate onclick checkbox
Good morning People, I have a form that is a datatable, and I have a button that marks or unchecks, all checkboxes of this datatable, by default these checkboxes are marked, i need that when reading…
-
0
votes3
answers459
viewsA: Insert an INPUT value based on a checkbox
After doing a lot of research and asking for help elsewhere, follow below as I solved my challenge. function checaMarcador(){ var linha; $('td').click(function(){ var row_index =…
-
0
votes3
answers459
viewsQ: Insert an INPUT value based on a checkbox
I have a form that has a button to mark all checksbox in a datatable. So far, so good. What I can’t do is take the value of checkbox marked and return the value 1 in another input within the…
-
1
votes2
answers59
viewsA: Fill in a text field and turn it upside down in the format yy/mm/dd hh:mm
I decided as follows: In the <head> I used Javascript below: <script type="text/javascript"> var dialanform = document.getElementById("dia").value; var ditual = dialanform.split(" ");…
-
-1
votes2
answers59
viewsQ: Fill in a text field and turn it upside down in the format yy/mm/dd hh:mm
Good morning guys, I need to find a way to fill in a field date and at the time of filling in it be inserted in another input, but in the American format, because I will use this field to make an…
-
0
votes2
answers92
viewsQ: Error doing Insert in BD SQL using JDBC
I need to do an Insert using JDBC Connection, but inserting generates the error below. com.microsoft.sqlserver.jdbc.Sqlserverexception: Conversion failed when Converting date and/or time from…
-
1
votes2
answers81
viewsQ: Change the result of a TD value for a dynamic table image
I’m developing a visual availability map, and I created a dynamic table, so far everything right. I need to get the result of <td> and transform into images. Example: my <td> returns…