Всем доброго!
Подскажите пожалуйста tkinter-widget таблицу в которой можно было бы редактировать значение ячеек.
Cover StoryЭто раз, затем непонятнен способ заполнения таблицы из python :
Но не знаю на сколько он гибок. Т. е. данные исправить в нем можно, но можно ли их потом забрать оттуда?
html
The table can use a Tcl array variable or Tcl command for data storage and retrieval
readmeВот этот пресловутый 'Tcl command' хотелось бы поюзать из python.
multiple data sources ((Tcl array || Tcl command) &| internal caching)
manА в линуксовом /usr/lib/Tktable2.10/tktable.py кусок инициализации выглядит так:
Command-Line Name:-command
Database Name: command
Database Class: Command
Specified a command to use as a procedural interface to cell values. If -usecommand is true, this command will be used instead of any reference to the -variable array. When retrieving cell values, the return value of the command is used as the value for the cell. It uses the %-substition model described in COMMAND SUBSTITUTION below.
warpsonЧто так? Мы не привыкли отступать:
К чертям все эти детские tktable (и wxWidgets с их odbc c Gtk впридачу)
#!/usr/bin/python
# -*- encoding: UTF-8 -*-
from Tkinter import *
class Cell(Entry):
def __init__(self, parent):
self.value = StringVar()
Entry.__init__(self, parent, textvariable = self.value)
class Table(Frame):
def __init__(self, parent, columns = 4, rows = 10):
Frame.__init__(self, parent)
self.cells = [[Cell(self) for i in range(columns)] for j in range(rows)]
[self.cells[i][j].grid(row = i, column = j) for i in range(rows) for j in range(columns)]
if __name__ == '__main__':
root = Tk()
tab = Table(root)
tab.pack()
tab.cells[1][1].value.set('test')
tab.cells[2][2].value.set( tab.cells[1][1].value.get() )
root.mainloop()
Subideal OxПодскажите как сохранить введенные данные в переменных для дальнейшего загона их в БД ?
4kpt_III
Тут же по tkinter вопрос. Это другой вообще GUI.
Сохраняется в tkinter просто. На событие Return вешается функция callback в которой узнается положение курсора в таблице - получаются данные и сохраняются данные в БД…