ragardner

Results 54 comments of ragardner

For forwards compatibility you could use this instead: ```python try: self.sheet.MT.data_ref[row][column] = self.currentVal except: self.sheet.MT.data[row][column] = self.currentVal ```

Hello and thanks, a couple of questions sorry Upon column A cell edits (or paste) should: 1. Column A cells always remain blank? or... 2. Column A cells only be...

Hello, This is a very basic demonstration of the edit checking and cell modifying code. It doesn't have a pandas dataframe so you'll have to fill in your code but...

Are the users able to insert columns or rows or does the sheet always have the same number of rows and columns?

It is taking me longer than expected sorry, I'm having to fix an issue I discovered with cell edits firing two events which is resulting in a little bit of...

Hello, The below code unfortunately will only work on tksheet versions `6.3.1` and greater sorry I am not sure if this is exactly what you wanted, setting a dropdown makes...

Hm, sorry about that, what snippet of code is generating the error? I also use vscode, i couldn’t say what might be preventing intellisense from working sorry

Thanks for the extra info, i will have to go over these issues tomorrow sorry 6.3.1 should in theory work with python 3.6, it was not my intention to make...

I've discovered and fixed the above issues, The issue with Python 3.7 was some new functions I introduced to the Sheet which I neglected to test on an earlier version,...

Oh, yea sorry I forgot about the delete event handler, also I should mention that the line `edit_cell_validation=False,` in the `Sheet()` creation arguments is of particular importance in this case...