Overview
Summary
Contact
Donate
Imprint
Prompt for the
LiveProgramView
Please create a React-JS view called "LiveProgramView" for the fields of the LiveProgram entity. The LiveProgramView must contain the following fields: - name: Channel type: Channel - name: EndTime type: STRING - name: IsSportsEvent type: BOOL - name: SportsEvent type: SportsEvent - name: StartTime type: STRING - name: Title type: Title The data source for the [SportsEvent] select control should be loaded from the relative URL: "/ChannelService/sportsevent" (HTTP-GET) The data source for the [Channel] select control should be loaded from the relative URL: "/ChannelService/channel" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) An existing LiveProgram entity should be loaded from the relative URL: "/ChannelService/liveprogram/{id}" (HTTP-GET) If a new LiveProgram entity has been created, the new entity should be posted to the relative URL: "/ChannelService/liveprogram" (HTTP-POST) If an existing LiveProgram entity has been updated, the modified entity should be sent to the relative URL: "/ChannelService/liveprogram/{id}" (HTTP-PUT) If an existing LiveProgram entity has to be deleted, the following relative URL should be called: "/ChannelService/liveprogram/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint