Overview
Summary
Contact
Donate
Imprint
Prompt for the
StockListingView
Please create a React-JS view called "StockListingView" for the fields of the StockListing entity. The StockListingView must contain the following fields: - name: Company type: Company - name: DelistingDate type: DATE - name: Exchange type: STRING - name: ListingDate type: DATE - name: Notes type: STRING - name: Ticker type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing StockListing entity should be loaded from the relative URL: "/StockListingService/stocklisting/{id}" (HTTP-GET) If a new StockListing entity has been created, the new entity should be posted to the relative URL: "/StockListingService/stocklisting" (HTTP-POST) If an existing StockListing entity has been updated, the modified entity should be sent to the relative URL: "/StockListingService/stocklisting/{id}" (HTTP-PUT) If an existing StockListing entity has to be deleted, the following relative URL should be called: "/StockListingService/stocklisting/{id}" (HTTP-DELETE) Add a HTML table to the view with the following IndexMembership columns: - column: StockListing - column: StartDate - column: EndDate - column: IndexName The table should have the title "IndexMemberships" und the data must be loaded from the server with the following relative URL: "/StockListingService/indexmembership/stocklisting/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint