Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SchoolClassStudentView
Please create a React-JS view called "SchoolClassStudentView" for the fields of the SchoolClassStudent entity. The SchoolClassStudentView must contain the following fields: - name: SchoolClass type: SchoolClass - name: Student type: Student The data source for the [SchoolClass] select control should be loaded from the relative URL: "/SchoolYearService/schoolclass" (HTTP-GET) The data source for the [Student] select control should be loaded from the relative URL: "/StudentService/student" (HTTP-GET) An existing SchoolClassStudent entity should be loaded from the relative URL: "/SchoolClassStudentService/schoolclassstudent/{id}" (HTTP-GET) If a new SchoolClassStudent entity has been created, the new entity should be posted to the relative URL: "/SchoolClassStudentService/schoolclassstudent" (HTTP-POST) If an existing SchoolClassStudent entity has been updated, the modified entity should be sent to the relative URL: "/SchoolClassStudentService/schoolclassstudent/{id}" (HTTP-PUT) If an existing SchoolClassStudent entity has to be deleted, the following relative URL should be called: "/SchoolClassStudentService/schoolclassstudent/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SchoolReport columns: - column: SchoolClassStudent - column: SchoolYear The table should have the title "SchoolReports" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/schoolreport/schoolclassstudent/{id}" Add a HTML table to the view with the following ClassRegisterEntry columns: - column: Details - column: Entry - column: ClassRegister - column: EntryDate - column: SchoolClassStudent The table should have the title "ClassRegisterEntrys" und the data must be loaded from the server with the following relative URL: "/SchoolClassStudentService/classregisterentry/schoolclassstudent/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum