Overview
Summary
Contact
Donate
Imprint
Prompt for the
ListingView
Please create a React-JS view called "ListingView" for the fields of the Listing entity. The ListingView must contain the following fields: - name: Company type: Company - name: Currency type: STRING - name: Exchange type: Exchange - name: IsPrimary type: BOOL - name: ListingDate type: DATE - name: MarketTier type: MarketTier - name: Status type: STRING - name: TickerSymbol type: STRING The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [MarketTier] select control should be loaded from the relative URL: "/MarketTierService/markettier" (HTTP-GET) An existing Listing entity should be loaded from the relative URL: "/ListingService/listing/{id}" (HTTP-GET) If a new Listing entity has been created, the new entity should be posted to the relative URL: "/ListingService/listing" (HTTP-POST) If an existing Listing entity has been updated, the modified entity should be sent to the relative URL: "/ListingService/listing/{id}" (HTTP-PUT) If an existing Listing entity has to be deleted, the following relative URL should be called: "/ListingService/listing/{id}" (HTTP-DELETE) Add a HTML table to the view with the following IndexConstituent columns: - column: Listing - column: WeightPercent - column: EffectiveFrom - column: Index - column: EffectiveTo The table should have the title "IndexConstituents" und the data must be loaded from the server with the following relative URL: "/ListingService/indexconstituent/listing/{id}" Add a HTML table to the view with the following Security columns: - column: SecurityType - column: Currency - column: IsActive - column: Listing The table should have the title "Securitys" und the data must be loaded from the server with the following relative URL: "/RegulatorService/security/listing/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint