Overview
Summary
Contact
Donate
Imprint
Prompt for the
ProductImageView
Please create a React-JS view called "ProductImageView" for the fields of the ProductImage entity. The ProductImageView must contain the following fields: - name: AltText type: STRING - name: CreatedAt type: DATE - name: IsMain type: BOOL - name: Product type: Product - name: SortOrder type: LONG - name: Url type: STRING The data source for the [Product] select control should be loaded from the relative URL: "/ProductService/product" (HTTP-GET) An existing ProductImage entity should be loaded from the relative URL: "/WishlistService/productimage/{id}" (HTTP-GET) If a new ProductImage entity has been created, the new entity should be posted to the relative URL: "/WishlistService/productimage" (HTTP-POST) If an existing ProductImage entity has been updated, the modified entity should be sent to the relative URL: "/WishlistService/productimage/{id}" (HTTP-PUT) If an existing ProductImage entity has to be deleted, the following relative URL should be called: "/WishlistService/productimage/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint