Overview
Summary
Contact
Donate
Imprint
Prompt for the
CourseTopicView
Please create a React-JS view called "CourseTopicView" for the fields of the CourseTopic entity. The CourseTopicView must contain the following fields: - name: Course type: Course - name: LearningTopic type: LearningTopic The data source for the [Course] select control should be loaded from the relative URL: "/CompanyService/course" (HTTP-GET) The data source for the [LearningTopic] select control should be loaded from the relative URL: "/LearningTopicService/learningtopic" (HTTP-GET) An existing CourseTopic entity should be loaded from the relative URL: "/LearningTopicService/coursetopic/{id}" (HTTP-GET) If a new CourseTopic entity has been created, the new entity should be posted to the relative URL: "/LearningTopicService/coursetopic" (HTTP-POST) If an existing CourseTopic entity has been updated, the modified entity should be sent to the relative URL: "/LearningTopicService/coursetopic/{id}" (HTTP-PUT) If an existing CourseTopic entity has to be deleted, the following relative URL should be called: "/LearningTopicService/coursetopic/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint