Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
CourseGroupView
Please create a React-JS view called "CourseGroupView" for the fields of the CourseGroup entity. The CourseGroupView must contain the following fields: - name: SchoolSubject type: SchoolSubject - name: GroupName type: STRING - name: RequiredCourse type: BOOL - name: SchoolYear type: SchoolYear The data source for the [SchoolSubject] select control should be loaded from the relative URL: "/SchoolSubjectService/schoolsubject" (HTTP-GET) The data source for the [SchoolYear] select control should be loaded from the relative URL: "/SchoolYearService/schoolyear" (HTTP-GET) An existing CourseGroup entity should be loaded from the relative URL: "/SchoolSubjectService/coursegroup/{id}" (HTTP-GET) If a new CourseGroup entity has been created, the new entity should be posted to the relative URL: "/SchoolSubjectService/coursegroup" (HTTP-POST) If an existing CourseGroup entity has been updated, the modified entity should be sent to the relative URL: "/SchoolSubjectService/coursegroup/{id}" (HTTP-PUT) If an existing CourseGroup entity has to be deleted, the following relative URL should be called: "/SchoolSubjectService/coursegroup/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CourseGroupMember columns: - column: Student - column: CourseGroup The table should have the title "CourseGroupMembers" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectService/coursegroupmember/coursegroup/{id}" Add a HTML table to the view with the following TeachingUnit columns: - column: RowIndex - column: SchoolSubject - column: Room - column: SchoolYear - column: CourseGroup - column: SchoolClass - column: ColumnIndex - column: Teacher The table should have the title "TeachingUnits" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/teachingunit/coursegroup/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum