Posts by Rafael Spessotto • 81 points
8 posts
-
-4
votes1
answer41
viewsQ: Best way to know if an object array has the same values, even at different positions
I would like a help for a function, where I have to know if two objects have the same values, even if in different positions. In this case they have the same values. I’ve seen how to do with arrays,…
-
0
votes0
answers34
viewsQ: Image that goes "Filling"
There is how I put an image and put a filter to be black and white, and as I want the image will get colored? Example: I have an image of an item that I want to conquer, it has stages to be…
-
2
votes1
answer2164
viewsQ: Datatable with JSON
I’m making a datatable with ajax return. $.getJSON("sql.php?operacao=usuario_lista&excluidos=false", function (data) { alert(data.users); $('#tabusuarios').DataTable({ "aaData": data.users,…
-
0
votes2
answers431
viewsQ: Div with other Divs inside
I just want to make one div, as if it were a windows window, with title, body and a button bar at the end. But I don’t know why, depending on the size of the window, it "leaks" or is left over…
-
1
votes1
answer1096
viewsQ: Load combobox with $.getJSON data
I’m doing a method that goes in the comic book makes a query and returns the codes. With these codes I charge to Combobox with the respective items. There are times that fill in neat, there are…
-
3
votes3
answers331
viewsQ: Find which items have been marked - Help with logic
I have 4 Checkbox, which when selected will assign their values in a variable. The result will be saved in only one field in the BD. When loading these Checkbox, I need to make an account to know…
-
0
votes1
answer35
viewsQ: Calculation of how many times I need to send a string
I have a service that updates status of controller boards.. Only he only returns me only 22 records at a time. Then I need to take the number of items I want to update and send the amount of…
c#asked Rafael Spessotto 81 -
2
votes1
answer113
viewsQ: Why do jquery events not work when creating an object via Javascript innerHTML?
I’m making the following code: var botoesTela = "<button id='okcad' class='botao_padrao botao_ok' value='OK' onclick=''> <img src='/php/Images/OK.png' alt='OK' /> OK </button>";…