Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PruefungView
Please create a React-JS view called "PruefungView" for the fields of the Pruefung entity. The PruefungView must contain the following fields: - name: Behoerde type: Behoerde - name: Beruf type: Beruf - name: Beschreibung type: STRING - name: Gesetz type: Gesetz - name: Land type: Land - name: MaxVersuche type: LONG - name: Mindestpunktzahl type: LONG - name: MuendlichErforderlich type: BOOL - name: Name type: STRING - name: SchriftlichErforderlich type: BOOL The data source for the [Beruf] select control should be loaded from the relative URL: "/BerufService/beruf" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) The data source for the [Behoerde] select control should be loaded from the relative URL: "/BehoerdeService/behoerde" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Pruefung entity should be loaded from the relative URL: "/PruefungService/pruefung/{id}" (HTTP-GET) If a new Pruefung entity has been created, the new entity should be posted to the relative URL: "/PruefungService/pruefung" (HTTP-POST) If an existing Pruefung entity has been updated, the modified entity should be sent to the relative URL: "/PruefungService/pruefung/{id}" (HTTP-PUT) If an existing Pruefung entity has to be deleted, the following relative URL should be called: "/PruefungService/pruefung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pruefungsversuch columns: - column: VersuchNummer - column: Notizen - column: MuendlichBestanden - column: PunkteMuendlich - column: Person - column: SchriftlichBestanden - column: PunkteSchriftlich - column: Datum - column: Gesamtergebnis - column: Pruefung The table should have the title "Pruefungsversuchs" und the data must be loaded from the server with the following relative URL: "/PruefungService/pruefungsversuch/pruefung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum