DataValidationBuilder cho Checkbox
.
// Add a checkBox item to a form and require exactly two selections. const form = FormApp.create('My Form'); const checkBoxItem = form.addCheckboxItem(); checkBoxItem.setTitle('What two condiments would you like on your hot dog?'); checkBoxItem.setChoices([ checkBoxItem.createChoice('Ketchup'), checkBoxItem.createChoice('Mustard'), checkBoxItem.createChoice('Relish'), ]); const checkBoxValidation = FormApp.createCheckboxValidation() .setHelpText('Select two condiments.') .requireSelectExactly(2) .build(); checkBoxItem.setValidation(checkBoxValidation);
Phương thức
Phương thức | Loại dữ liệu trả về | Mô tả ngắn |
---|---|---|
require | Checkbox | Yêu cầu phải chọn ít nhất số lựa chọn này. |
require | Checkbox | Yêu cầu người dùng chọn tối đa số lựa chọn này. |
require | Checkbox | Yêu cầu phải chọn đúng số lượng lựa chọn này. |
Tài liệu chi tiết
require Select At Least(number)
Yêu cầu phải chọn ít nhất số lựa chọn này.
Tham số
Tên | Loại | Mô tả |
---|---|---|
number | Integer |
Cầu thủ trả bóng
Checkbox
– Checkbox
này, để tạo chuỗi
require Select At Most(number)
Yêu cầu người dùng chọn tối đa số lựa chọn này.
Tham số
Tên | Loại | Mô tả |
---|---|---|
number | Integer |
Cầu thủ trả bóng
Checkbox
– Checkbox
này, để tạo chuỗi
require Select Exactly(number)
Yêu cầu phải chọn đúng số lượng lựa chọn này.
Tham số
Tên | Loại | Mô tả |
---|---|---|
number | Integer |
Cầu thủ trả bóng
Checkbox
– Checkbox
này, để tạo chuỗi