You are viewing limited content. For full access, please sign in.

Question

Question

Fill Drop-Down with values from multi-row table on same form

asked on June 13, 2017

I am trying to figure out a way to fill a drop-down field in a table with multi-line text field values from a different table on the same form. 

This is for a credentialing form that uses a lookup to fill a college name based on a college code. I want to take the values input from the lookup in the college name field and put them into a drop down field in another table on the same form. The idea is that the person entering the college codes in the first table will be able to choose the college names provided by the lookup in the drop down.  

0 0

Replies

replied on June 13, 2017 Show version history

If the options you want in the dropdown come from a single column of a lookup with known identifier, you should be able to use a lookup rule to populate both parts of the Form.

If the dropdown options are only going to be variable values populated when the user enters codes into the other table, I think you'll need to do that with JavaScript.

  • Attach "on change" events to the college name fields
  • Point it to a function that:
    • Iterates through each row to gather the names from the first table
    • Replaces the options in the Select element with the list of names
1 0
replied on June 14, 2017

That's what I was thinking. My problem is how to iterate through an unknown/unknowable number of rows.

0 0
replied on June 14, 2017 Show version history

If you don't have a predetermined number of rows, then you could use ".each" and target the specific input type in that table column. That will let you iterate through every field in the collection even if the numbers vary.

Forms groups each column of a table under td elements with the same "data-col" value, so you could use that in combination with the input type (textarea if it is a multiline) for the jquery selector, and that will give you the collection you need.

For example,

So in this example, all of the multi-line fields are in column 3 and I can see that the data-col value for that column is q8. Using that I can now get a collection of all those fields regardless of how many the user adds/removes.

// column 3 was identified with data-col=3
// so I find textarea elements with those elements as the parent

$('td[data-col="q8"] textarea').each(
    function(index,value){
        // use $(this).val() to get the contents of the field
        // populate an array with each college name as you go
    }
);

// use the college names you collected above to build your dropdown

A couple caveats here:

  1. If rows might be added or removed, you will need to detect those changes and run a process to ensure all of the fields will always have the necessary change event even if new ones get added.
  2. Storing the names in an array would be more useful than adding them to the dropdown as you go because you could sort them after and make your dropdown a bit cleaner.
1 0
replied on June 14, 2017

Perfect, thank you. I will try this out as soon as possible and reply with my findings/script(in case anyone else is needing something similar).

0 0
replied on June 14, 2017

No problem. I edited the post with a bit more info because there's an important "gotcha" item you will need to address.

New rows added by the user will not have your custom events unless you set something up to watch and attach the event listener as they are added.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.