Assessment Metric for Multiple Selection
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2024 06:53 AM
I selected a multiple selection Question (metric) for Core Company table (200+ records).
The question options are displayed as checkboxes and the list is 200+ items long. Is there a way to not display it as checkboxes, rather use a list with multiple selection or anything similar to a List type in form fields?
Multiple selection metric displayed as:
Need something like this:
Or this:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-10-2025 11:31 PM
Hi @HelloCAD - Were you able to find the solution for this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2025 02:41 AM
No.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2025 06:08 AM
Hello @HelloCAD
Did you try the type - List collector ? With variable attribute - glide_list = true
And if you necessarily want to keep this same type please add below on load client script and check once if this works -
function onLoad() {
var questionField = g_form.getControl('variable_name'); // Replace with actual variable name
if (questionField) {
questionField.setAttribute('multiple', 'true');
questionField.style.height = '100px'; // Adjust size if needed
}}
Please mark my answer as helpful if it helped you in anyway.
LinkedIn - https://www.linkedin.com/in/shivalika-gupta-540346194