Select a subform lookup value
I'm new to Delgue coding and I'm attempting to select a value in a lookup dropdown list in a subform and haven't been able to get it to work at all. I'm able to create a row and enter data into the two date fields correctly, but the dropdown menu remains blank. My code is as follows so far:
- // declaring the row
- row1 = Training_Curriculum.Training_Requirements();
- // assigning values for various subform fields in the row
- row1.Requirement_name = "1";
- row1.Start_Date=zoho.currentdate;
- row1.Completion_Date=zoho.currentdate;
- // declare a variable to hold the collection of rows
- subForm_collection = Collection();
- subForm_collection.insert( row1 );
- // insert the rows into the subform through the variable
- input.Training_Requirements.insert( subForm_collection );
Thanks in advanced for any help.