Posts by Diego • 109 points
6 posts
-
0
votes1
answer399
views -
5
votes4
answers13756
viewsQ: Sort List in java
I have a List<Pessoa> where the attributes of the object are: Name, age, address, etc. I have a screen where I insert people in this list and I submit a report, I would like to display this…
-
0
votes2
answers205
viewsA: Table does not update correctly after editing
Problem solved. Talking to a friend I found that appointments also have to be committed. So my DAO consultation was this way: @SuppressWarnings("unchecked") public List<Tarefa>…
-
0
votes2
answers205
viewsQ: Table does not update correctly after editing
I have a dataTable and in the last column I have an edit button that opens a dialog with a field to be filled. When I click edit the table is updated with the edited data, but if I give an F5 the…
-
0
votes2
answers2083
viewsQ: Pick selected line from datatable
I have a dataTable with the data in front of each given one button, when I click one button dialog is opened so that I can edit this data, but I cannot take the object that was selected to pass as…
-
5
votes3
answers11756
viewsQ: Change format of a date from yyyy-MM-dd to dd-mm-yyyy
I have a dataTable where I display some data but the date is coming in format yyyy-mm-dd how do I change the format of this date so that I can display it correctly in my dataTable? And where do I do…