Overview
Summary
Contact
Donate
Imprint
Prompt for the
ZeppelinClassView
Please create a React-JS view called "ZeppelinClassView" for the fields of the ZeppelinClass entity. The ZeppelinClassView must contain the following fields: - name: EndYear type: INT - name: LengthMeters type: STRING - name: Manufacturer type: Organization - name: MaxPayloadTons type: STRING - name: MaxSpeedKmh type: STRING - name: Name type: STRING - name: Notes type: STRING - name: StartYear type: INT - name: VolumeCubicMeters type: STRING The data source for the [Manufacturer] select control should be loaded from the relative URL: "/OrganizationService/organization" (HTTP-GET) An existing ZeppelinClass entity should be loaded from the relative URL: "/OrganizationService/zeppelinclass/{id}" (HTTP-GET) If a new ZeppelinClass entity has been created, the new entity should be posted to the relative URL: "/OrganizationService/zeppelinclass" (HTTP-POST) If an existing ZeppelinClass entity has been updated, the modified entity should be sent to the relative URL: "/OrganizationService/zeppelinclass/{id}" (HTTP-PUT) If an existing ZeppelinClass entity has to be deleted, the following relative URL should be called: "/OrganizationService/zeppelinclass/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Zeppelin columns: - column: Code - column: ConstructionNumber - column: FirstFlightDate - column: LastFlightDate - column: ZeppelinClass - column: HomeBaseLocation - column: Status - column: Name - column: Operator - column: Notes The table should have the title "Zeppelins" und the data must be loaded from the server with the following relative URL: "/ZeppelinService/zeppelin/zeppelinclass/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint