Overview
Summary
Contact
Donate
Imprint
Prompt for the
EditorialArticleView
Please create a React-JS view called "EditorialArticleView" for the fields of the EditorialArticle entity. The EditorialArticleView must contain the following fields: - name: AuthorName type: STRING - name: Body type: STRING - name: Language type: Language - name: PublishedAt type: DATE - name: TitleText type: STRING - name: UpdatedAt type: DATE The data source for the [Language] select control should be loaded from the relative URL: "/LanguageService/language" (HTTP-GET) An existing EditorialArticle entity should be loaded from the relative URL: "/EditorialArticleService/editorialarticle/{id}" (HTTP-GET) If a new EditorialArticle entity has been created, the new entity should be posted to the relative URL: "/EditorialArticleService/editorialarticle" (HTTP-POST) If an existing EditorialArticle entity has been updated, the modified entity should be sent to the relative URL: "/EditorialArticleService/editorialarticle/{id}" (HTTP-PUT) If an existing EditorialArticle entity has to be deleted, the following relative URL should be called: "/EditorialArticleService/editorialarticle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following EditorialArticleTitle columns: - column: EditorialArticle - column: Position - column: Title The table should have the title "EditorialArticleTitles" und the data must be loaded from the server with the following relative URL: "/TitleService/editorialarticletitle/editorialarticle/{id}" Add a HTML table to the view with the following EditorialArticlePerson columns: - column: Person - column: Position - column: EditorialArticle The table should have the title "EditorialArticlePersons" und the data must be loaded from the server with the following relative URL: "/EditorialArticleService/editorialarticleperson/editorialarticle/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint