Overview
Summary
Contact
Donate
Imprint
Prompt for the
CharityListingView
Please create a React-JS view called "CharityListingView" for the fields of the CharityListing entity. The CharityListingView must contain the following fields: - name: CharityOrganization type: CharityOrganization - name: CharityProgram type: CharityProgram - name: DonationAmountCap type: STRING - name: DonationPercentage type: STRING - name: Listing type: Listing - name: Notes type: STRING The data source for the [CharityOrganization] select control should be loaded from the relative URL: "/CharityOrganizationService/charityorganization" (HTTP-GET) The data source for the [Listing] select control should be loaded from the relative URL: "/ListingService/listing" (HTTP-GET) The data source for the [CharityProgram] select control should be loaded from the relative URL: "/CharityOrganizationService/charityprogram" (HTTP-GET) An existing CharityListing entity should be loaded from the relative URL: "/CharityOrganizationService/charitylisting/{id}" (HTTP-GET) If a new CharityListing entity has been created, the new entity should be posted to the relative URL: "/CharityOrganizationService/charitylisting" (HTTP-POST) If an existing CharityListing entity has been updated, the modified entity should be sent to the relative URL: "/CharityOrganizationService/charitylisting/{id}" (HTTP-PUT) If an existing CharityListing entity has to be deleted, the following relative URL should be called: "/CharityOrganizationService/charitylisting/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint