get the required cell
(self, row=None, column=None)
| 563 | self.update_data() |
| 564 | |
| 565 | def get(self, row=None, column=None): |
| 566 | """ get the required cell """ |
| 567 | if row is not None and column is not None: |
| 568 | return self.data[row,column]["value"] |
| 569 | else: |
| 570 | return self.values |
| 571 | |
| 572 | def get_selected_row(self): |
| 573 | """ Return the index and data of the selected row """ |