Overview
Summary
Contact
Donate
Imprint
Prompt for the
ComputerView
Please create a React-JS view called "ComputerView" for the fields of the Computer entity. The ComputerView must contain the following fields: - name: CpuCount type: LONG - name: DataCenter type: DataCenter - name: Hostname type: STRING - name: MemoryGb type: LONG - name: Role type: STRING - name: Status type: STRING The data source for the [DataCenter] select control should be loaded from the relative URL: "/DataCenterService/datacenter" (HTTP-GET) An existing Computer entity should be loaded from the relative URL: "/DataCenterService/computer/{id}" (HTTP-GET) If a new Computer entity has been created, the new entity should be posted to the relative URL: "/DataCenterService/computer" (HTTP-POST) If an existing Computer entity has been updated, the modified entity should be sent to the relative URL: "/DataCenterService/computer/{id}" (HTTP-PUT) If an existing Computer entity has to be deleted, the following relative URL should be called: "/DataCenterService/computer/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint