Overview
Summary
Contact
Donate
Imprint
Prompt for the
MergerAttemptView
Please create a React-JS view called "MergerAttemptView" for the fields of the MergerAttempt entity. The MergerAttemptView must contain the following fields: - name: AnnouncementDate type: DATE - name: BidderExchange type: Exchange - name: PartnerCompany type: Company - name: ReasonWithdrawn type: STRING - name: Status type: STRING - name: TargetExchange type: Exchange - name: WithdrawnDate type: DATE The data source for the [PartnerCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [BidderExchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) The data source for the [TargetExchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) An existing MergerAttempt entity should be loaded from the relative URL: "/SustainabilityInitiativeService/mergerattempt/{id}" (HTTP-GET) If a new MergerAttempt entity has been created, the new entity should be posted to the relative URL: "/SustainabilityInitiativeService/mergerattempt" (HTTP-POST) If an existing MergerAttempt entity has been updated, the modified entity should be sent to the relative URL: "/SustainabilityInitiativeService/mergerattempt/{id}" (HTTP-PUT) If an existing MergerAttempt entity has to be deleted, the following relative URL should be called: "/SustainabilityInitiativeService/mergerattempt/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint