Overview
Summary
Contact
Donate
Imprint
Prompt for the
SavedFilterView
Please create a React-JS view called "SavedFilterView" for the fields of the SavedFilter entity. The SavedFilterView must contain the following fields: - name: CreatedUtc type: DATE - name: Description type: STRING - name: FilterJson type: STRING - name: IsDefault type: BOOL - name: Name type: STRING - 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 SavedFilter entity should be loaded from the relative URL: "/UserAccountService/savedfilter/{id}" (HTTP-GET) If a new SavedFilter entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/savedfilter" (HTTP-POST) If an existing SavedFilter entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/savedfilter/{id}" (HTTP-PUT) If an existing SavedFilter entity has to be deleted, the following relative URL should be called: "/UserAccountService/savedfilter/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint