You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the rendering of values in the Checklist popup when you right click over a column renders the text by calling Object.toString(). This is not very useful for tables that use, for example, columns that contain Date objects, since you rarely ever want the toString() representation in your table. Is it possible to implement a custom way of rendering that? I am not entirely sure where to start touching the code. I've managed to make it do what I want by directly changing the method CheckListRenderer.getObjectAsText but that's certainly not a good solution.
Would adding a custom CheckListRenderer to TableRowFilterSupport be a good solution?
The text was updated successfully, but these errors were encountered:
I've done a quick and dirty addition to allow for a custom ListCellRenderer on the popup. Would you like me to make a pull request? I'm not sure it's the solution you'd like to implement.
Currently the rendering of values in the Checklist popup when you right click over a column renders the text by calling Object.toString(). This is not very useful for tables that use, for example, columns that contain Date objects, since you rarely ever want the toString() representation in your table. Is it possible to implement a custom way of rendering that? I am not entirely sure where to start touching the code. I've managed to make it do what I want by directly changing the method CheckListRenderer.getObjectAsText but that's certainly not a good solution.
Would adding a custom CheckListRenderer to TableRowFilterSupport be a good solution?
The text was updated successfully, but these errors were encountered: