dmnfarrell / tkintertable

A pure Python library for adding tables to a Tkinter application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Omit filter term in model.getColumnData

JB91451 opened this issue · comments

Dear Damien,

I want to use your nice tkintertable module in a GUI to enable the user to set some (paired) parameters prior to an analysis and want to return the specified values by the getColumnData() method. As the table length (i.e. # rows) and the actual data is not really specified, I would like to return the complete column as a list without any filtering. Is there a way to omit the filter term? Alternatively, I could use some non-filtering filter (e.g. >0 for numeric data or contains a-z for strings, ...), but as the data can be quite diverse, there is still the risk of an error caused by this.

Best,
Juergen