entry callback
(self, row, column)
| 302 | self.frame[x,y].configure(background_corner_colors=color, fg_color=fg)) |
| 303 | |
| 304 | def manipulate_data(self, row, column): |
| 305 | """ entry callback """ |
| 306 | self.update_data() |
| 307 | data = self.data[row,column] |
| 308 | if self.command: self.command(data) |
| 309 | |
| 310 | def update_data(self): |
| 311 | """ update the data when values are changes """ |