Overview
Summary
Contact
Donate
Imprint
Prompt for the
CriticismView
Please create a React-JS view called "CriticismView" for the fields of the Criticism entity. The CriticismView must contain the following fields: - name: AladdinSystem type: AladdinSystem - name: Description type: STRING - name: Person type: Person - name: Publication type: Publication - name: RiskType type: STRING - name: SeverityAssessment type: STRING - name: Title type: STRING The data source for the [AladdinSystem] select control should be loaded from the relative URL: "/AladdinSystemService/aladdinsystem" (HTTP-GET) The data source for the [Publication] select control should be loaded from the relative URL: "/PublicationService/publication" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Criticism entity should be loaded from the relative URL: "/PublicationService/criticism/{id}" (HTTP-GET) If a new Criticism entity has been created, the new entity should be posted to the relative URL: "/PublicationService/criticism" (HTTP-POST) If an existing Criticism entity has been updated, the modified entity should be sent to the relative URL: "/PublicationService/criticism/{id}" (HTTP-PUT) If an existing Criticism entity has to be deleted, the following relative URL should be called: "/PublicationService/criticism/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CriticismRiskConcern columns: - column: Criticism - column: RiskConcern The table should have the title "CriticismRiskConcerns" und the data must be loaded from the server with the following relative URL: "/PublicationService/criticismriskconcern/criticism/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint