Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserListView
Please create a React-JS view called "UserListView" for the fields of the UserList entity. The UserListView must contain the following fields: - name: CreatedAt type: DATE - name: Description type: STRING - name: IsPublic type: BOOL - name: Name type: STRING - name: UpdatedAt type: DATE - name: UserAccount type: UserAccount The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserList entity should be loaded from the relative URL: "/AwardEventService/userlist/{id}" (HTTP-GET) If a new UserList entity has been created, the new entity should be posted to the relative URL: "/AwardEventService/userlist" (HTTP-POST) If an existing UserList entity has been updated, the modified entity should be sent to the relative URL: "/AwardEventService/userlist/{id}" (HTTP-PUT) If an existing UserList entity has to be deleted, the following relative URL should be called: "/AwardEventService/userlist/{id}" (HTTP-DELETE) Add a HTML table to the view with the following UserListItem columns: - column: Position - column: UserList - column: Notes - column: AddedAt - column: Person - column: Title The table should have the title "UserListItems" und the data must be loaded from the server with the following relative URL: "/PersonService/userlistitem/userlist/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint