Overview
Summary
Contact
Donate
Imprint
Prompt for the
ExchangeView
Please create a React-JS view called "ExchangeView" for the fields of the Exchange entity. The ExchangeView must contain the following fields: - name: Currency type: STRING - name: FoundedDate type: DATE - name: IsElectronic type: BOOL - name: ListingsCount type: INT - name: LocationCity type: City - name: LocationCountry type: Country - name: MarketCapUsd type: DOUBLE - name: Name type: STRING - name: OwnerCompany type: Company - name: Type type: STRING - name: Website type: STRING The data source for the [LocationCountry] select control should be loaded from the relative URL: "/ExchangeService/country" (HTTP-GET) The data source for the [LocationCity] select control should be loaded from the relative URL: "/CityService/city" (HTTP-GET) The data source for the [OwnerCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Exchange entity should be loaded from the relative URL: "/ExchangeService/exchange/{id}" (HTTP-GET) If a new Exchange entity has been created, the new entity should be posted to the relative URL: "/ExchangeService/exchange" (HTTP-POST) If an existing Exchange entity has been updated, the modified entity should be sent to the relative URL: "/ExchangeService/exchange/{id}" (HTTP-PUT) If an existing Exchange entity has to be deleted, the following relative URL should be called: "/ExchangeService/exchange/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MarketTier columns: - column: MinPublicFloatPercent - column: Exchange - column: MinShareholders - column: Name - column: Code - column: MinMarketCapUsd - column: Description The table should have the title "MarketTiers" und the data must be loaded from the server with the following relative URL: "/MarketTierService/markettier/exchange/{id}" Add a HTML table to the view with the following PlatformAdoption columns: - column: Description - column: Platform - column: AdoptionDate - column: Exchange The table should have the title "PlatformAdoptions" und the data must be loaded from the server with the following relative URL: "/CompanyService/platformadoption/exchange/{id}" Add a HTML table to the view with the following MarketMakerQuotePermission columns: - column: MarketMaker - column: EffectiveTo - column: EffectiveFrom - column: Exchange - column: QuoteLevel The table should have the title "MarketMakerQuotePermissions" und the data must be loaded from the server with the following relative URL: "/QuoteLevelService/marketmakerquotepermission/exchange/{id}" Add a HTML table to the view with the following QuoteLevel columns: - column: IsForMarketMakers - column: Description - column: Exchange - column: LevelNumber The table should have the title "QuoteLevels" und the data must be loaded from the server with the following relative URL: "/QuoteLevelService/quotelevel/exchange/{id}" Add a HTML table to the view with the following Listing columns: - column: Company - column: Currency - column: IsPrimary - column: Status - column: TickerSymbol - column: MarketTier - column: ListingDate - column: Exchange The table should have the title "Listings" und the data must be loaded from the server with the following relative URL: "/ListingService/listing/exchange/{id}" Add a HTML table to the view with the following TradingSession columns: - column: Name - column: Exchange - column: SessionType - column: EndTimeLocal - column: IsExtendedHours - column: StartTimeLocal - column: TimeZone The table should have the title "TradingSessions" und the data must be loaded from the server with the following relative URL: "/ListingService/tradingsession/exchange/{id}" Add a HTML table to the view with the following ListingFeeSchedule columns: - column: MinFeeUsd - column: EffectiveFrom - column: Exchange - column: EffectiveTo - column: ForAcquisitionCompanies - column: MarketTier - column: MaxFeeUsd The table should have the title "ListingFeeSchedules" und the data must be loaded from the server with the following relative URL: "/MarketTierService/listingfeeschedule/exchange/{id}" Add a HTML table to the view with the following ExchangeMembershipInInitiative columns: - column: SustainabilityInitiative - column: JoinDate - column: Exchange The table should have the title "ExchangeMembershipInInitiatives" und the data must be loaded from the server with the following relative URL: "/SustainabilityInitiativeService/exchangemembershipininitiative/exchange/{id}" Add a HTML table to the view with the following TradingVolumeStat columns: - column: MarketSharePercent - column: AverageDailyTrades - column: Exchange - column: Year The table should have the title "TradingVolumeStats" und the data must be loaded from the server with the following relative URL: "/CityService/tradingvolumestat/exchange/{id}" Add a HTML table to the view with the following LegalAction columns: - column: Exchange - column: ActionDate - column: ActionType - column: Description - column: Regulator The table should have the title "LegalActions" und the data must be loaded from the server with the following relative URL: "/RegulatorService/legalaction/exchange/{id}" Add a HTML table to the view with the following Index columns: - column: Name - column: Exchange - column: Description - column: Code - column: IsCapitalizationWeighted The table should have the title "Indexs" und the data must be loaded from the server with the following relative URL: "/ListingService/index/exchange/{id}" Add a HTML table to the view with the following MergerAttempt columns: - column: Status - column: WithdrawnDate - column: AnnouncementDate - column: BidderExchange - column: PartnerCompany - column: ReasonWithdrawn - column: TargetExchange The table should have the title "MergerAttempts" und the data must be loaded from the server with the following relative URL: "/SustainabilityInitiativeService/mergerattempt/bidderexchange/{id}" Add a HTML table to the view with the following MergerAttempt columns: - column: Status - column: WithdrawnDate - column: AnnouncementDate - column: BidderExchange - column: PartnerCompany - column: ReasonWithdrawn - column: TargetExchange The table should have the title "MergerAttempts" und the data must be loaded from the server with the following relative URL: "/SustainabilityInitiativeService/mergerattempt/targetexchange/{id}" Add a HTML table to the view with the following Event columns: - column: Source - column: Exchange - column: EventDate - column: Description - column: EventType The table should have the title "Events" und the data must be loaded from the server with the following relative URL: "/SustainabilityInitiativeService/event/exchange/{id}" Add a HTML table to the view with the following TradingScheduleChange columns: - column: EffectiveDate - column: Exchange - column: AnnouncementDate - column: Description The table should have the title "TradingScheduleChanges" und the data must be loaded from the server with the following relative URL: "/QuoteLevelService/tradingschedulechange/exchange/{id}" Add a HTML table to the view with the following OrderBookFeature columns: - column: LaunchDate - column: Description - column: Exchange - column: Name The table should have the title "OrderBookFeatures" und the data must be loaded from the server with the following relative URL: "/MarketTierService/orderbookfeature/exchange/{id}" Add a HTML table to the view with the following ExchangeVenue columns: - column: IsPrimary - column: Exchange - column: City The table should have the title "ExchangeVenues" und the data must be loaded from the server with the following relative URL: "/CityService/exchangevenue/exchange/{id}" Add a HTML table to the view with the following Inspection columns: - column: InspectionDate - column: IsAntitrustRelated - column: Description - column: Regulator - column: Exchange The table should have the title "Inspections" und the data must be loaded from the server with the following relative URL: "/ExchangeService/inspection/exchange/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint