Overview
Summary
Contact
Donate
Imprint
Prompt for the
JobPostingView
Please create a React-JS view called "JobPostingView" for the fields of the JobPosting entity. The JobPostingView must contain the following fields: - name: Department type: STRING - name: Description type: STRING - name: EmploymentType type: STRING - name: ExpiresOn type: DATE - name: Location type: Location - name: Organization type: Organization - name: PostedOn type: DATE - name: Title type: STRING The data source for the [Organization] select control should be loaded from the relative URL: "/OrganizationService/organization" (HTTP-GET) The data source for the [Location] select control should be loaded from the relative URL: "/LocationService/location" (HTTP-GET) An existing JobPosting entity should be loaded from the relative URL: "/LocationService/jobposting/{id}" (HTTP-GET) If a new JobPosting entity has been created, the new entity should be posted to the relative URL: "/LocationService/jobposting" (HTTP-POST) If an existing JobPosting entity has been updated, the modified entity should be sent to the relative URL: "/LocationService/jobposting/{id}" (HTTP-PUT) If an existing JobPosting entity has to be deleted, the following relative URL should be called: "/LocationService/jobposting/{id}" (HTTP-DELETE) Add a HTML table to the view with the following JobApplication columns: - column: SubmittedOn - column: ApplicantName - column: Email - column: JobPosting - column: Notes - column: Status - column: Phone The table should have the title "JobApplications" und the data must be loaded from the server with the following relative URL: "/PersonService/jobapplication/jobposting/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint