Multi-select Lookups

Comments

1 comment

  • Avatar
    Karl Makatenas

    Although the exact method is eluding me right now, I'm sure you can do something similar using Rules to populate a text field.  This seems very simple using Javascript, so here's a quick bit of untested code for you to launch when ProjectName fires a Change event:

    function PopulateProjectNumber() {

    var projects = $("#ProjectName");
    var nums = [];
    for (var i = 0; i < projects.length; i++) {

    nums.push(projects[i].value);

    }
    var projectNums = nums.join("; ");
    $("#ProjectNumber").value = projectNums;

    }

    0
    Comment actions Permalink

Please sign in to leave a comment.