-
Notifications
You must be signed in to change notification settings - Fork 832
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
checkbox question - render none below other item #1531
Comments
Hello @theriddler, To specify new positions for the special choices, use the Negative numbers place a special choice item above regular choice items, positive numbers place it below them. For instance, the code below places the None option at the end of a list: View CodeSandbox. import { settings } from "survey-core";
settings.specialChoicesOrder.noneItem = [2];
settings.specialChoicesOrder.selectAllItem = [-1];
settings.specialChoicesOrder.otherItem = [1]; A Checkboxes question appears as follows: Thanks |
Make sure that none item is rendered on the bottom. under the other item.
The text was updated successfully, but these errors were encountered: