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
If the field isn't required, the value of a boolean field can be [undefined|true|false]. A checkbox field only allows [undefined|true].
[undefined|true|false]
[undefined|true]
The solution is to use a choice list, with three choices: "blank", "yes", and "no".
The text was updated successfully, but these errors were encountered:
Make the boolean type handle null values
0f06936
Closes #225
fzaninotto
No branches or pull requests
If the field isn't required, the value of a boolean field can be
[undefined|true|false]
. A checkbox field only allows[undefined|true]
.The solution is to use a choice list, with three choices: "blank", "yes", and "no".
The text was updated successfully, but these errors were encountered: