nucleic / enaml

Declarative User Interfaces for Python
http://enaml.readthedocs.io/en/latest/
Other
1.53k stars 130 forks source link

table view/model support? #69

Closed jason-s closed 10 years ago

jason-s commented 10 years ago

Are there plans in the works to support table view/model objects?

I've got more of a Java background than Python; the JTable class worked very nicely for me with its ability to act as a view for a separate table model, using the GlazedLists library. At this point I'm not sure what I should use to put a table together using enaml.

sccolbert commented 10 years ago

At this point your best bet is to use RawWidget to insert a QTableView or QTableWidget into the Enaml hierarchy. At my day job, we have a closed-source grid implementation for Enaml, so I simply haven't had the time or justification to write something which is public. I do have some ideas about how it should look though, and plan to implement one in the future, I just don't know when that will be.