-
Notifications
You must be signed in to change notification settings - Fork 24
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
Field length #98
Comments
Are you trying to truncate your strings? |
If you want to truncate strings, do so in Python, first. If you're trying to set a longer FORMAT length, it's probably a bug. |
Not at all, I just want to handle the field length so that if for example I put the values ["ABC", "ABCD", "AB"] instead of being length = 4 (max length in the values), I can put a higher one. |
If it's not working, that's a bug in the |
Going inside the package, I have found the issue, I was using v.length and it must be v.width Thank you for your help, and for your quickly response. |
I'd be happy to receive a pull request fixing the documentation. |
I'm having an issue with the length, I want to set it to the number I want but it is always fixed to the max length of the values inside the field.
I'm using a similar example to this:
v.length is doing nothing as I see in the result
The text was updated successfully, but these errors were encountered: