Overview
Summary
Contact
Donate
Imprint
Prompt for the
AwardEventEditionView
Please create a React-JS view called "AwardEventEditionView" for the fields of the AwardEventEdition entity. The AwardEventEditionView must contain the following fields: - name: AwardEvent type: AwardEvent - name: EditionNumber type: LONG - name: EventDate type: DATE - name: Location type: STRING - name: Year type: INT The data source for the [AwardEvent] select control should be loaded from the relative URL: "/AwardEventService/awardevent" (HTTP-GET) An existing AwardEventEdition entity should be loaded from the relative URL: "/AwardEventEditionService/awardeventedition/{id}" (HTTP-GET) If a new AwardEventEdition entity has been created, the new entity should be posted to the relative URL: "/AwardEventEditionService/awardeventedition" (HTTP-POST) If an existing AwardEventEdition entity has been updated, the modified entity should be sent to the relative URL: "/AwardEventEditionService/awardeventedition/{id}" (HTTP-PUT) If an existing AwardEventEdition entity has to be deleted, the following relative URL should be called: "/AwardEventEditionService/awardeventedition/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PersonAward columns: - column: AwardEventEdition - column: AwardCategory - column: Person - column: Title - column: Notes - column: IsWinner The table should have the title "PersonAwards" und the data must be loaded from the server with the following relative URL: "/AwardEventEditionService/personaward/awardeventedition/{id}" Add a HTML table to the view with the following TitleAward columns: - column: Notes - column: AwardCategory - column: IsWinner - column: Title - column: AwardEventEdition The table should have the title "TitleAwards" und the data must be loaded from the server with the following relative URL: "/AwardEventEditionService/titleaward/awardeventedition/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint