Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
EventTaskView
Please create a React-JS view called "EventTaskView" for the fields of the EventTask entity. The EventTaskView must contain the following fields: - name: Details type: STRING - name: ExternalPerson type: ExternalPerson - name: SchoolEvent type: SchoolEvent - name: Student type: Student - name: TaskTitle type: STRING - name: Teacher type: Teacher The data source for the [ExternalPerson] select control should be loaded from the relative URL: "/ExternalPersonService/externalperson" (HTTP-GET) The data source for the [SchoolEvent] select control should be loaded from the relative URL: "/SchoolEventService/schoolevent" (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 [Student] select control should be loaded from the relative URL: "/StudentService/student" (HTTP-GET) An existing EventTask entity should be loaded from the relative URL: "/StudentService/eventtask/{id}" (HTTP-GET) If a new EventTask entity has been created, the new entity should be posted to the relative URL: "/StudentService/eventtask" (HTTP-POST) If an existing EventTask entity has been updated, the modified entity should be sent to the relative URL: "/StudentService/eventtask/{id}" (HTTP-PUT) If an existing EventTask entity has to be deleted, the following relative URL should be called: "/StudentService/eventtask/{id}" (HTTP-DELETE) Add a HTML table to the view with the following EventTaskDependency columns: - column: Source - column: Destination The table should have the title "EventTaskDependencys" und the data must be loaded from the server with the following relative URL: "/ConferenceService/eventtaskdependency/destination/{id}" Add a HTML table to the view with the following EventTaskDependency columns: - column: Source - column: Destination The table should have the title "EventTaskDependencys" und the data must be loaded from the server with the following relative URL: "/ConferenceService/eventtaskdependency/source/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum