Table is blinking
Table is blinking
klermann
Posts: 277Questions: 67Answers: 1
Hello Allan, how do I solve this problem? When I update an item or create a new one the datatable receives the update and flashes a line only, in my case the entire table is blinking. What to do?
This discussion has been closed.
Answers
Can you give me a link to the page again please?
Thanks,
Allan
http://ec2-54-157-236-83.compute-1.amazonaws.com:8080/financeiro/receitas
You are returning all of the rows in the table in response to the edit request. Not just the data that was edited (like the examples do).
The client / server communication Editor uses is documented here.
Allan
Hello Allan, I have now updated the return to return only the row I am creating or editing, and the row is being removed from the table and not updating. If I notice in json's return, it is returning only the line I need and not all. What can it be?
ec2-54-157-236-83.compute-1.amazonaws.com:8080/financeiro/receitas
The server is responding with:
Note how
data
is an object, unlike the array that the documentation requires.Allan