jarvisteach / appJar

Simple Tkinter GUIs in Python
http://appJar.info
Other
615 stars 68 forks source link

help me #464

Closed izzzzzi closed 6 years ago

izzzzzi commented 6 years ago

tell me what widget can do my job I need to load the sqlite table into a table and work with the information from the table it is desirable that it would be possible to select several elements and a drop-down menu

izzzzzi commented 6 years ago

Is it possible to add several columns to the listbox, and not just one?

othoma commented 6 years ago

I would you .getentry instead of a dropdown. That would filter trough the column of the Table.

One getentry by column you wanna filter through.

jarvisteach commented 6 years ago

There is a table widget, that can connect to databases: http://appjar.info/pythonDevWidgets/#connecting-to-databases

Although the performance is not good for big tables.

List boxes can only have one column, but you could put multiple list boxes side-by-side?

izzzzzi commented 6 years ago

@jarvisteach Can I add a checkbox to the table?

jarvisteach commented 6 years ago

Not currently - but I'll raise it as a new feature request.