Overview
Summary
Contact
Donate
Imprint
Prompt for the
AwardCategoryView
Please create a React-JS view called "AwardCategoryView" for the fields of the AwardCategory entity. The AwardCategoryView must contain the following fields: - name: AwardEvent type: AwardEvent - name: Description type: STRING - name: Name type: STRING The data source for the [AwardEvent] select control should be loaded from the relative URL: "/AwardEventService/awardevent" (HTTP-GET) An existing AwardCategory entity should be loaded from the relative URL: "/AwardEventService/awardcategory/{id}" (HTTP-GET) If a new AwardCategory entity has been created, the new entity should be posted to the relative URL: "/AwardEventService/awardcategory" (HTTP-POST) If an existing AwardCategory entity has been updated, the modified entity should be sent to the relative URL: "/AwardEventService/awardcategory/{id}" (HTTP-PUT) If an existing AwardCategory entity has to be deleted, the following relative URL should be called: "/AwardEventService/awardcategory/{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/awardcategory/{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/awardcategory/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint