Job Agent
The Job Agent Web Component integrates the MindKey Job Agent allowing the user to add, change, or resend the mail to their Job Agent.
Usage
<mk-job-agent
customer-id="your-customer-id"
language="en-US"
></mk-job-agent>
HTML Attributes
Parameters marked with * are required.
Some attributes use the Site Parameters (Documentation, MindKey) as their default. The Site Parameters can be set by an HR person and helps them to customize the look of the Job Agent Web Component without a developer assistance.
You only need to set any attribute with a Site Parameter default if you want to overwrite it. This is most likely for some special recruiting pages that should look different than any other page.
| Parameter | Default | Description |
|---|---|---|
customer-id* | Your MindKey assigned customer id (GUID). | |
language* | The language to request. | |
type | By Site Parameters | Sets a specific job agent type in case you have multiple. |
show-colon-in-field-names | true | Shows/Hides the colon in field names, e.g. Title: when turned on, or Title when turned off |
show-social-share | false | true to enable the social share feature. Please also set at least one of the following share-* attributes to true to enable sharing to a specific platform. |
share-via-email | false | true to enable sharing via email. |
share-via-linked-in | false | true to enable sharing via LinkedIn. |
share-via-facebook | false | true to enable sharing via Facebook. |
share-via-whats-app | false | true to enable sharing via WhatsApp. |
Styling
Styling the confirmation message
Any Job Agent related action (create, activate, update, delete, send email) will show a confirmation message to the user.
This message will be shown in a <p> tag like:
<p class="confirmation [placeholder]">Your Job Agent has been updated successfully.</p>
The [placeholder] will be a specific class depending on the action:
- Create:
create-job-agent. - Activate:
activate-job-agent. - Update:
update-job-agent. - Delete:
delete-job-agent. - Send email:
send-email-job-agent.
Configurator
Basic
Display
Social Sharing
Stylesheets
- Preview
- Code
customer-id and select a language to see a live preview.<mk-job-agent></mk-job-agent>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MindKey Recruiting</title>
<script src="https://recruiting.mindkey.com/mk-recruiting-components.js"></script>
</head>
<body>
<mk-job-agent></mk-job-agent>
</body>
</html>