NEW BUILDER ... terrible script debugger
So if you write buggy script, instead of telling you there is a bug, it says "script saved" but doesn't really save it.
I lost about 20 minutes worth of work just now, because I assued script saved meant script was actually saved. But just as I was about to test it, I noticed my own error.
- l = Lesson[ID == input.thisLesson];
clear Student;
for each s in l.Students{
if(s.status == null)
{
Student.add(s);
}
}
Student is subform in Lesson
it says "script saved on this" but didn't actually save it.
Old builder showed this as error, on this line Student.add(s);