Assessment Metric for Multiple Selection

HelloCAD
Tera Contributor

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:

HelloCAD_0-1724421100740.png

Need something like this:

HelloCAD_1-1724421164082.png

Or this:

HelloCAD_2-1724421184162.png

 

3 REPLIES 3

Rahul96
Tera Contributor

Hi @HelloCAD  - Were you able to find the solution for this?

HelloCAD
Tera Contributor

No.

Shivalika
Mega Sage

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