-
Notifications
You must be signed in to change notification settings - Fork 99
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
Check box column does not check/uncheck correctly #492
Comments
I'm not sure if I understand correctly. Do you expect that the checkbox state changes when you click in the cell even if you don't hit the checkbox? Or is it something different? Btw, although NatTable is a subproject of Nebula it has its own repository and forum. I wasn't able to migrate it to GitHub so far. |
I see my mistake, I said cell but meant the check box inside of it. The tick doesn't (dis)appear even in any case - neither when clicking exactly on the check box nor on the cell. The only thing that works is selecting the cell and ten hitting the space bar. Should I move the question to the other forum? |
Well, if the checkbox state change works on key press but not on click, I suppose you are missing the necessary ui bindings. The tutorial you are referring to is not covering this fact, as it simply uses a The following page should cover it at least basically: https://www.eclipse.org/nattable/documentation.php?page=editing Of course I don't know if you are using a
If it is necessary to have a longer discussion yes. |
Hello everyone!
We've encountered a pretty boring problem and for some days now we haven't been able to solve it. To give a bit of background, we have a Nebula NatTable with 5 columns, where the last one should be a a column containing simple check boxes. We have followed this tutorial: https://www.vogella.com/tutorials/NatTableEditing/article.html. However, the problem we have is with actual clicking on the cell. If you just click on it, it doesn't change the state. However, if the cell is selected and you then push the space bar, the tick does (dis)appear and the underlying command is triggered. Here's the configuration we have so far:
`public class CheckBoxConfigurationNebula extends AbstractRegistryConfiguration {
}`
Do you have an idea what could be the problem?
The text was updated successfully, but these errors were encountered: