Student dropdown lists are empty throughout the system. I can’t seem to figure out what is wrong.
I updated to V29, and I’m wondering if this is a bug or if anyone else has experienced this.
@sandra Please kindly help.
Thank you.
Student dropdown lists are empty throughout the system. I can’t seem to figure out what is wrong.
I updated to V29, and I’m wondering if this is a bug or if anyone else has experienced this.
@sandra Please kindly help.
Thank you.
Hi @mfonnix , when you updated, did you also rollover or change the school year? The most common cause of students not showing up in dropdown lists is that they’re not enrolled in the current school year. Be sure to check Admissions > Student Enrolment.
Dear @sandra thank you for your response.
Enrollment solved the initial problem, but I added a new dropdown field in formal assessment module hoping to display all students in the system but that only works for enrolled students and still did not display other students that are not enrolled.
If you’ve added a custom →addSelectStudent()dropdown, the third parameter lets you pass an array of optional params, if you pass allStudents => true, it will ignore enrolment and include all students, for example:
$row->addSelectStudent('gibbonPersonID', $session->get('gibbonSchoolYearID'), ['allStudents' => true])->placeholder()->required();
As a note, I’ve created some docs about modifying the core, which would be helpful to read so you don’t lose any changes when you update Gibbon: Core Development | Gibbon Documentation
@sandra This certainly resolved my issue.
Thank you so much for your help