Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SchoolClassView
Please create a React-JS view called "SchoolClassView" for the fields of the SchoolClass entity. The SchoolClassView must contain the following fields: - name: AgeGroup type: AgeGroup - name: Teacher type: Teacher - name: ClassName type: STRING - name: Room type: Room - name: School type: School - name: SchoolYear type: SchoolYear The data source for the [School] select control should be loaded from the relative URL: "/SchoolService/school" (HTTP-GET) The data source for the [AgeGroup] select control should be loaded from the relative URL: "/AgeGroupService/agegroup" (HTTP-GET) The data source for the [Teacher] select control should be loaded from the relative URL: "/StudentService/teacher" (HTTP-GET) The data source for the [SchoolYear] select control should be loaded from the relative URL: "/SchoolYearService/schoolyear" (HTTP-GET) The data source for the [Room] select control should be loaded from the relative URL: "/RoomService/room" (HTTP-GET) An existing SchoolClass entity should be loaded from the relative URL: "/SchoolYearService/schoolclass/{id}" (HTTP-GET) If a new SchoolClass entity has been created, the new entity should be posted to the relative URL: "/SchoolYearService/schoolclass" (HTTP-POST) If an existing SchoolClass entity has been updated, the modified entity should be sent to the relative URL: "/SchoolYearService/schoolclass/{id}" (HTTP-PUT) If an existing SchoolClass entity has to be deleted, the following relative URL should be called: "/SchoolYearService/schoolclass/{id}" (HTTP-DELETE) Add a HTML table to the view with the following HomeWork columns: - column: Schoolsubject - column: WorkDate - column: Description - column: DeadLine - column: Grade - column: SchoolClass - column: Done - column: Subject - column: Student The table should have the title "HomeWorks" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectService/homework/schoolclass/{id}" Add a HTML table to the view with the following ClassRegister columns: - column: SchoolClass The table should have the title "ClassRegisters" und the data must be loaded from the server with the following relative URL: "/SchoolClassStudentService/classregister/schoolclass/{id}" Add a HTML table to the view with the following SchoolSubjectClass columns: - column: SchoolSubject - column: SchoolClass The table should have the title "SchoolSubjectClasss" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectClassService/schoolsubjectclass/schoolclass/{id}" Add a HTML table to the view with the following Lesson columns: - column: Teacher - column: SchoolSubject - column: LessonContent - column: SchoolClass - column: LessonDate The table should have the title "Lessons" und the data must be loaded from the server with the following relative URL: "/LessonService/lesson/schoolclass/{id}" Add a HTML table to the view with the following SchoolClassStudent columns: - column: Student - column: SchoolClass The table should have the title "SchoolClassStudents" und the data must be loaded from the server with the following relative URL: "/SchoolClassStudentService/schoolclassstudent/schoolclass/{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/schoolclass/{id}" Add a HTML table to the view with the following StudentRepresentation columns: - column: Student - column: School - column: SchoolClass The table should have the title "StudentRepresentations" und the data must be loaded from the server with the following relative URL: "/SchoolService/studentrepresentation/schoolclass/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum