Overview
Summary
Contact
Donate
Imprint
Prompt for the
FlightPositionView
Please create a React-JS view called "FlightPositionView" for the fields of the FlightPosition entity. The FlightPositionView must contain the following fields: - name: AltitudeFt type: INT - name: Flight type: Flight - name: GroundSpeedKt type: INT - name: Latitude type: DOUBLE - name: Longitude type: DOUBLE - name: OnGround type: BOOL - name: Receiver type: Receiver - name: Source type: STRING - name: TimestampUtc type: DATE - name: TrackDeg type: DOUBLE - name: VerticalSpeedFpm type: INT The data source for the [Flight] select control should be loaded from the relative URL: "/FlightService/flight" (HTTP-GET) The data source for the [Receiver] select control should be loaded from the relative URL: "/ReceiverService/receiver" (HTTP-GET) An existing FlightPosition entity should be loaded from the relative URL: "/ReceiverService/flightposition/{id}" (HTTP-GET) If a new FlightPosition entity has been created, the new entity should be posted to the relative URL: "/ReceiverService/flightposition" (HTTP-POST) If an existing FlightPosition entity has been updated, the modified entity should be sent to the relative URL: "/ReceiverService/flightposition/{id}" (HTTP-PUT) If an existing FlightPosition entity has to be deleted, the following relative URL should be called: "/ReceiverService/flightposition/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint