Hi George, Actually, I’m trying to use a regular NetBeans Explorer TableView.. not the JavaFX tableview. http://bits.netbeans.org/dev/javadoc/org-openide-explorer/org/openide/explorer/view/TableView.html <http://bits.netbeans.org/dev/javadoc/org-openide-explorer/org/openide/explorer/view/TableView.html>
I also see some examples use OutlineView and remove the Node (first column).. but I think TableView is what is more closer to our current JTable implementation. - Tim > On Jul 2, 2021, at 4:04 PM, Gheorghe TUDOSE <tudo....@gmail.com> wrote: > > For the second point, the TableView "where we can create new columns with > expressions behind it where it calculates values to display in the table" - I > take it it's a JavaFX TableView. > If that is the case, I personally wrap each object corresponding to a table > row into a JavaFX-specific class (a ViewModel if you like) that keeps a > Map<String, Property>. > The JavaFX ViewModel has some registerProperty(String propertyName, Class<T> > valueClass) method that makes the appropriate property and puts it into the > above-mentioned map. > HTH > > George Tudose