-
Notifications
You must be signed in to change notification settings - Fork 948
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
Add ability to hide columns and/or rows #1006
Comments
Hi @juliusdanek I tried it, it works like a charm, I can certainly add this to the next release (will be 5.3.0). |
Awesome! Thank you. I don't think you need to return the "fields". Works well though. |
Most if it's not every requests in gspread return the response from the API call to the user. In this request we must set the value for the entry |
Ah got it! My bad :) Anyway, thanks for adding this!! |
Add new method that allows the user to explicitly hide rows or columns. Ass new method that allows the user to explicitly unhide rows or columns. This feature does not include any _listing_ method, because the listing is not in the metadata of the `SpreadSheet` or the `Sheet`, it will require to list all the data in the sheet and list all of them then check if the flag `hiddenByUser` is set. This is a lot of processing and with very large data set this can take some time For a result that is only visible using the UI. closes #1006
Add new method that allows the user to explicitly hide rows or columns. Ass new method that allows the user to explicitly unhide rows or columns. This feature does not include any _listing_ method, because the listing is not in the metadata of the `SpreadSheet` or the `Sheet`, it will require to list all the data in the sheet and list all of them then check if the flag `hiddenByUser` is set. This is a lot of processing and with very large data set this can take some time For a result that is only visible using the UI. closes #1006
Is your feature request related to a problem? Please describe.
Add ability to hide columns and/or rows. This is achievable via batch_update using the request body below.
The text was updated successfully, but these errors were encountered: