Fill drop down list with a calculated total | Community
Skip to main content
New Participant
June 23, 2020
Solved

Fill drop down list with a calculated total

  • June 23, 2020
  • 3 replies
  • 1632 views

I have a calculated field that totals the difference between two numbers; is there a way to use that generated total and populate a drop down?

 

example: the calculation is 5; is there a way to populate a drop down list that would show 0,1,2,3,4,5?

I think some combination of a For loop and an array might do it, however, I am no good at script writing and I would really appreciate an example 😌

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Mayank_Gandhi

@wilsonl28824783 

Try adding the calculated element using JS i.e  DropDown.addItem("Last Item," Calculated Value");

3 replies

Nupur_Jain
Employee
July 2, 2020

Hi @wilsonl28824783 

 

You can achieve your requirment using Jquery. Find the code snippet to dynamically add values to dropdown.

 

(function ($, $document) { "use strict"; // Add granite:class='custom-dynamic-selection' on selection node on cq:dialog const SELECTION_SELECTOR = ".custom-dynamic-selection"; $document.on("dialog-ready", function () { // Change this value after calculating it var dynamicLength = 5; populateDropdown(dynamicLength); }); function populateDropdown(length) { var dynamicSelection = $(SELECTION_SELECTOR); if (dynamicSelection.length) { dynamicSelection[0].items.clear(); for (var number = 1; number <= length; number++) { var selectItem = {}; selectItem.content = {}; selectItem.content.textContent = number; selectItem.value = number; dynamicSelection[0].items.add(selectItem); } } } }(jQuery, jQuery(document)));

 

Add this js in "cq.authoring.dialog" clientlibs and add property granite:class on selection like this

 

Hope it helps!

Thanks,

Nupur

Mayank_Gandhi
Employee
July 2, 2020
Jquery is not supported in PDF forms.
Mayank_Gandhi
Mayank_GandhiAccepted solution
Employee
July 2, 2020

@wilsonl28824783 

Try adding the calculated element using JS i.e  DropDown.addItem("Last Item," Calculated Value");

New Participant
June 23, 2020

Is this adaptive form?

New Participant
June 23, 2020
No, it is not