We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A solution to this is to prevent the users from deleting the rows. This can be accomplished by adding an empty check to the remove_rows method:
if self._df.shape[0] <= 1:
# Optionally throw a warning here
return selected_names
...
Another solution is that when the dataframe is empty there is a constroctor of a 'default' row but but this would be more difficult to scale. ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
Description of Issue
when the dataframe is empty, the add row botton from the tool bar does not work.
I expected that the widget add a row
Reproduction Steps
...
What steps have you taken to resolve this already?
A solution to this is to prevent the users from deleting the rows. This can be accomplished by adding an empty check to the remove_rows method:
...
Anything else?
Another solution is that when the dataframe is empty there is a constroctor of a 'default' row but but this would be more difficult to scale.
...
The text was updated successfully, but these errors were encountered: