Overview
Summary
Contact
Donate
Imprint
Prompt for the
GroundStationView
Please create a React-JS view called "GroundStationView" for the fields of the GroundStation entity. The GroundStationView must contain the following fields: - name: City type: City - name: Latitude type: STRING - name: Longitude type: STRING - name: Name type: STRING - name: NetworkTechnology type: NetworkTechnology - name: SpectrumBand type: SpectrumBand The data source for the [NetworkTechnology] select control should be loaded from the relative URL: "/NetworkTechnologyService/networktechnology" (HTTP-GET) The data source for the [SpectrumBand] select control should be loaded from the relative URL: "/NetworkTechnologyService/spectrumband" (HTTP-GET) The data source for the [City] select control should be loaded from the relative URL: "/RegionService/city" (HTTP-GET) An existing GroundStation entity should be loaded from the relative URL: "/NetworkTechnologyService/groundstation/{id}" (HTTP-GET) If a new GroundStation entity has been created, the new entity should be posted to the relative URL: "/NetworkTechnologyService/groundstation" (HTTP-POST) If an existing GroundStation entity has been updated, the modified entity should be sent to the relative URL: "/NetworkTechnologyService/groundstation/{id}" (HTTP-PUT) If an existing GroundStation entity has to be deleted, the following relative URL should be called: "/NetworkTechnologyService/groundstation/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint