Hey there everyone, I finally got a multicolumn table implemented with what I wanted after looking through the code sample provided here, but now I am having some issues with how the data is displayed.
At first, everything displays correctly and fields update as they should, but whenever I scroll, the data does not present it itself as it should, in other words cells that should have remain one value end up changing or zeroing out, which affects the column holding a running total.
The application, which is a checkbook ledger application, holds its data in an SQLite database and when I view the database, the values there have changes as well, which forces me to import a previous SQL dump to get everything back, only to experience the issue again.
When I go back to an old version of the application, which has a hideous UI, however, scrolling does not modify anything.
Does anybody know how to deal with this little problem?
If you would like to see what I have already, here is the source code as it currently is.
Ok, it looks like I solved it by comparing my old version of my code with the new.
I was not checking if values were zero, and because I am not sure of a way to do the check. If resorted to creating wrappers, which made it so that important fields did not change with scrolling.