Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FahrzeugView
Please create a React-JS view called "FahrzeugView" for the fields of the Fahrzeug entity. The FahrzeugView must contain the following fields: - name: Baujahr type: INT - name: BreiteM type: STRING - name: Fahrschule type: Fahrschule - name: Fahrzeugtyp type: Fahrzeugtyp - name: Fuehrerscheinklasse type: Fuehrerscheinklasse - name: HatDoppelpedale type: BOOL - name: HatZusatzspiegel type: BOOL - name: Hersteller type: STRING - name: IstPruefungsfahrzeug type: BOOL - name: IstSimulator type: BOOL - name: Kennzeichen type: STRING - name: LaengeM type: STRING - name: MaxMasseKg type: INT - name: Modell type: STRING The data source for the [Fahrzeugtyp] select control should be loaded from the relative URL: "/FahrzeugtypService/fahrzeugtyp" (HTTP-GET) The data source for the [Fahrschule] select control should be loaded from the relative URL: "/FahrschuleService/fahrschule" (HTTP-GET) The data source for the [Fuehrerscheinklasse] select control should be loaded from the relative URL: "/LandService/fuehrerscheinklasse" (HTTP-GET) An existing Fahrzeug entity should be loaded from the relative URL: "/FahrzeugtypService/fahrzeug/{id}" (HTTP-GET) If a new Fahrzeug entity has been created, the new entity should be posted to the relative URL: "/FahrzeugtypService/fahrzeug" (HTTP-POST) If an existing Fahrzeug entity has been updated, the modified entity should be sent to the relative URL: "/FahrzeugtypService/fahrzeug/{id}" (HTTP-PUT) If an existing Fahrzeug entity has to be deleted, the following relative URL should be called: "/FahrzeugtypService/fahrzeug/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PraxisUnterricht columns: - column: FahrschuleZweigstelle - column: DatumZeit - column: IstNachtfahrt - column: DauerMinuten - column: IstSonderfahrt - column: IstLandstrassenfahrt - column: Fahrlehrer - column: Fahrzeug - column: Ausbildungsprogramm - column: Unterrichtsart - column: IstAutobahnfahrt The table should have the title "PraxisUnterrichts" und the data must be loaded from the server with the following relative URL: "/LandService/praxisunterricht/fahrzeug/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum