-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table cell value does not update #47
Comments
Hi @dmnfarrell do you have any news for this bug ? |
Did you say you can interact with the table. There is code in tkintertable/Testing.py that tests this very thing and it seems to work. You could take a look at it. It might be a key binding problem but you have given no error messages. It sounds like more to do with your own app. |
The thing is that i checked every common mistakes i may have made, i checked the type of what comes out of the display controller and what comes it my editorController in both cases and they are all of the same type. I checked binding of every function and their buttons. In the case where i can't modify the table, i simply can't do anything else. |
It would be best if you made a minimal example of 2 tables that works and then add more features into it bit by bit. If a minimal example works then something specific to your app is causing it. Your code is quite long and I can't go through it all in detail. |
Hello @dmnfarrell i tried to print every variables in both cases and they have same types each time i don't see what i am missing man. I also have duplicated files for both use cases to try to see a difference between both behavior, i try to modify the second file to get something working but it doesn't here is the code where i can't edit cells :
|
I have finally found what causes cells not alterable, in file |
So if your change fixes the problem why do you still think tkintertable cause a conflict of some kind? there is only one tkinter thread running at once and all the widgets run in that I believe. |
Hello i am facing a really weird issue,
I have a file "editorWindow2.py" which when it's called creates a tk frame containing several tableCanvas :
Everything works like a charm i can click on cells and change their values to finally export the whole thing into an xml file.
However sometimes i call the same file from an other entry point in the program but this time the cells are no more editable and i have no clues why. I have checked that i call the window with exactly the same type of objects and data as i do in the case where it works.
Here is the code :
I precise that i am beginner with tkinter so please don't be too hard on me ahah
Let me explain more clearly : my program has two ways to be used, First user can chose to edit an xml file so he can import a file in order to edit it.
in case where he choses "import", next window called is this one :
and finally
and the last window called is the one i first showed you with the tkintertable.
the other use case changes only in the first windows :
and at this point the display is called with an object of the same type as it is in the first case.
The text was updated successfully, but these errors were encountered: