Reply To: display lookup sub-field info on newform for read only use

Home Forums SPJS-Lookup display lookup sub-field info on newform for read only use Reply To: display lookup sub-field info on newform for read only use

#21484
Eric Dickerson
Participant

    yes. I noticed that too and changed all, still an error, but a different one, image attached.

    also included is a screenshot that shows the warning on back end on line 10

    below is the plaintext code:

    populateProductInfo();
    function populateProductInfo() {
    var fields = init_fields_v2();
    var argumentObj = {‘arrFinAndDispName’:[‘Diamond_x0020_Plus|Premium Plus’,’Premium|Premium’,’Platinum|Advanced’,’Gold|Mid-Level’,’Silver|Value’,’Budget|Budget’],
    ‘ListGuid’:’BBE30B42-613E-4F1E-93D4-41AC1A96F411′,
    ‘LookupFIN’:’Customer0′};
    init_displayInfo(argumentObj);
    }
    if(!isNaN(‘Diamond_x0020_Plus’)){
    ‘Diamond_x0020_Plus’ = Number(‘Diamond_x0020_Plus’).toFixed(2);
    }

    $(“#dffs_Patient”).find(“select”).change(function(){
    $(“#dffs_patientname”).find(“select”).val($(this).val());
    var sText = $(“#dffs_Patient”).find(“option:selected”).text();
    setFieldValue(“null”,sText);
    });