Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ConferenceView
Please create a React-JS view called "ConferenceView" for the fields of the Conference entity. The ConferenceView must contain the following fields: - name: FromDate type: DATE - name: ToDate type: DATE - name: ConferenceType type: ConferenceType - name: Room type: Room The data source for the [ConferenceType] select control should be loaded from the relative URL: "/ConferenceService/conferencetype" (HTTP-GET) The data source for the [Room] select control should be loaded from the relative URL: "/RoomService/room" (HTTP-GET) An existing Conference entity should be loaded from the relative URL: "/ConferenceService/conference/{id}" (HTTP-GET) If a new Conference entity has been created, the new entity should be posted to the relative URL: "/ConferenceService/conference" (HTTP-POST) If an existing Conference entity has been updated, the modified entity should be sent to the relative URL: "/ConferenceService/conference/{id}" (HTTP-PUT) If an existing Conference entity has to be deleted, the following relative URL should be called: "/ConferenceService/conference/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ConferenceAttendee columns: - column: Teacher - column: ExternalPerson - column: Conference - column: Student The table should have the title "ConferenceAttendees" und the data must be loaded from the server with the following relative URL: "/ConferenceService/conferenceattendee/conference/{id}" Add a HTML table to the view with the following ConferenceItem columns: - column: ItemTitle - column: Conference - column: DocumentPath The table should have the title "ConferenceItems" und the data must be loaded from the server with the following relative URL: "/ConferenceService/conferenceitem/conference/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum