Overview
Summary
Contact
Donate
Imprint
Prompt for the
CharityAuctionEventView
Please create a React-JS view called "CharityAuctionEventView" for the fields of the CharityAuctionEvent entity. The CharityAuctionEventView must contain the following fields: - name: BeneficiaryCharityOrganization type: CharityOrganization - name: Currency type: STRING - name: Description type: STRING - name: EndDate type: DATE - name: StartDate type: DATE - name: Title type: STRING - name: TotalRaisedAmount type: STRING The data source for the [BeneficiaryCharityOrganization] select control should be loaded from the relative URL: "/CharityOrganizationService/charityorganization" (HTTP-GET) An existing CharityAuctionEvent entity should be loaded from the relative URL: "/CharityOrganizationService/charityauctionevent/{id}" (HTTP-GET) If a new CharityAuctionEvent entity has been created, the new entity should be posted to the relative URL: "/CharityOrganizationService/charityauctionevent" (HTTP-POST) If an existing CharityAuctionEvent entity has been updated, the modified entity should be sent to the relative URL: "/CharityOrganizationService/charityauctionevent/{id}" (HTTP-PUT) If an existing CharityAuctionEvent entity has to be deleted, the following relative URL should be called: "/CharityOrganizationService/charityauctionevent/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CharityAuctionListing columns: - column: CharityAuctionEvent - column: Listing The table should have the title "CharityAuctionListings" und the data must be loaded from the server with the following relative URL: "/ListingService/charityauctionlisting/charityauctionevent/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint