oo

Clay Alerts

Clay alerts come in two types: embedded and stripe. Both types, along with several examples of each, are shown below.

Embedded Alerts

Embedded alerts are usually used inside forms. The element that contains it determines an embedded alert’s width. The close action is not required for embedded alerts. The following embedded alerts can be created with Clay taglibs:

Danger alert (embedded):

<clay:alert
	displayType="danger"
	message="This is an error message."
	title="Error"
/>

The danger alert notifies the user of an error or issue.

Success alert (embedded):

<clay:alert
	displayType="success"
	message="This is a success message."
	title="Success"
/>

The success alert notifies the user when an action is successful.

Info alert (embedded):

<clay:alert
	displayType="info"
	message="This is an info message."
	title="Info"
/>

The info alert displays general information to the user.

Warning alert (embedded):

<clay:alert
	displayType="warning"
	message="This is a warning message."
	title="Warning"
/>

The warning alert displays a warning message to the user.

Stripe Alerts

Stripe alerts are placed below the last navigation element (either the header or the navigation bar), and they usually appear on Save action, communicating the status of the action once received from the server. Unlike embedded alerts, stripe alerts require the close action. A stripe alert is always the full width of the container and pushes all the content below it. The following stripe alerts can be created with Clay taglibs:

Danger alert (stripe):

<clay:stripe
	displayType="danger"
	message="This is an error message."
	title="Error"
/>

The danger striped alert notifies the user that an action has failed.

Success alert (stripe):

<clay:stripe
	displayType="success"
	message="This is a success message."
	title="Success"
/>

The success striped alert notifies the user that an action has completed successfully.

Info alert (stripe):

<clay:stripe
	displayType="info"
	message="This is an info message."
	title="Info"
/>

The info striped alert displays general information about an action to the user.

Warning alert (stripe):

<clay:stripe
	displayType="warning"
	message="This is a warning message."
	title="Warning"
/>

The warning striped alert warns the user about an action.

Now you know how to alert users!