Add to a picklist dynamically?
I have record Class with field Students, it is a picklist that looks up record Student
I need another form, that will dynamically add student to the Class, code something like this
- theStudent = Student [ID == input.Student];
- theClass = Class [Title == input.ClassName];
- theClass.Students.add(theStudent.ID);
This compiles with no errors, but it wont run or produce any results.