Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
OrganView
Please create a React-JS view called "OrganView" for the fields of the Organ entity. The OrganView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING - name: Organtyp type: Organtyp - name: Verein type: Verein The data source for the [Verein] select control should be loaded from the relative URL: "/VereinService/verein" (HTTP-GET) The data source for the [Organtyp] select control should be loaded from the relative URL: "/DokumenttypService/organtyp" (HTTP-GET) An existing Organ entity should be loaded from the relative URL: "/VereinService/organ/{id}" (HTTP-GET) If a new Organ entity has been created, the new entity should be posted to the relative URL: "/VereinService/organ" (HTTP-POST) If an existing Organ entity has been updated, the modified entity should be sent to the relative URL: "/VereinService/organ/{id}" (HTTP-PUT) If an existing Organ entity has to be deleted, the following relative URL should be called: "/VereinService/organ/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Organmitglied columns: - column: BisDatum - column: Organ - column: Rolle - column: IstStimmberechtigt - column: Mitglied - column: VonDatum The table should have the title "Organmitglieds" und the data must be loaded from the server with the following relative URL: "/MitgliedService/organmitglied/organ/{id}" Add a HTML table to the view with the following Versammlung columns: - column: Ort - column: Datum - column: Versammlungstyp - column: IstOeffentlich - column: IstAusserordentlich - column: Organ The table should have the title "Versammlungs" und the data must be loaded from the server with the following relative URL: "/AufloesungsgrundService/versammlung/organ/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum