Overview
Summary
Contact
Donate
Imprint
Prompt for the
AwardEventView
Please create a React-JS view called "AwardEventView" for the fields of the AwardEvent entity. The AwardEventView must contain the following fields: - name: Country type: Country - name: Description type: STRING - name: FirstYear type: INT - name: Name type: STRING - name: WebsiteUrl type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing AwardEvent entity should be loaded from the relative URL: "/AwardEventService/awardevent/{id}" (HTTP-GET) If a new AwardEvent entity has been created, the new entity should be posted to the relative URL: "/AwardEventService/awardevent" (HTTP-POST) If an existing AwardEvent entity has been updated, the modified entity should be sent to the relative URL: "/AwardEventService/awardevent/{id}" (HTTP-PUT) If an existing AwardEvent entity has to be deleted, the following relative URL should be called: "/AwardEventService/awardevent/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AwardCategory columns: - column: AwardEvent - column: Name - column: Description The table should have the title "AwardCategorys" und the data must be loaded from the server with the following relative URL: "/AwardEventService/awardcategory/awardevent/{id}" Add a HTML table to the view with the following AwardEventEdition columns: - column: EditionNumber - column: EventDate - column: Year - column: Location - column: AwardEvent The table should have the title "AwardEventEditions" und the data must be loaded from the server with the following relative URL: "/AwardEventEditionService/awardeventedition/awardevent/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint