Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserListItemView
Please create a React-JS view called "UserListItemView" for the fields of the UserListItem entity. The UserListItemView must contain the following fields: - name: AddedAt type: DATE - name: Notes type: STRING - name: Person type: Person - name: Position type: LONG - name: Title type: Title - name: UserList type: UserList The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [UserList] select control should be loaded from the relative URL: "/AwardEventService/userlist" (HTTP-GET) An existing UserListItem entity should be loaded from the relative URL: "/PersonService/userlistitem/{id}" (HTTP-GET) If a new UserListItem entity has been created, the new entity should be posted to the relative URL: "/PersonService/userlistitem" (HTTP-POST) If an existing UserListItem entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/userlistitem/{id}" (HTTP-PUT) If an existing UserListItem entity has to be deleted, the following relative URL should be called: "/PersonService/userlistitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint