@{ ViewBag.Title = "Alerts"; ViewBag.Description = "tooltips and notifications"; Layout = "~/Views/Shared/_Default.cshtml"; }
Alerts
Default Alerts
@using (Html.Bootstrap().Begin(new Alert().Style(AlertColor.Warning).Closeable())) { Warning Your monthly traffic is reaching limit. } @using (Html.Bootstrap().Begin(new Alert().Style(AlertColor.Success).Closeable())) { SuccessThe page has been added. } @using (Html.Bootstrap().Begin(new Alert().Style(AlertColor.Info).Closeable())) { Info! You have 8 unread messages. } @using (Html.Bootstrap().Begin(new Alert().Style(AlertColor.Error).Closeable())) { Error! Update has failed. }
Rounded & Shadowed Alerts
@using (Html.Bootstrap().Begin(new Alert().Style(AlertColor.Warning).Closeable().Shadowed().RadiusBordered())) { 0 Warning Your monthly traffic is reaching limit. } @using (Html.Bootstrap().Begin(new Alert().Style(AlertColor.Success).Closeable().Shadowed().RadiusBordered())) { 2 Success Two Tasks Are Completed. } @using (Html.Bootstrap().Begin(new Alert().Style(AlertColor.Info).Closeable().Shadowed().RadiusBordered())) { 8 Info! You have 8 unread messages. } @using (Html.Bootstrap().Begin(new Alert().Style(AlertColor.Error).Closeable().Shadowed().RadiusBordered())) { Error! Update has failed. }
Tooltips
Inline Tooltips

Tight pants next level keffiyeh you probably haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit american apparel have a terry richardson vinyl chambray. twitter handle freegan cred raw denim single-origin coffee viral.


Tooltip Positions
@Html.Bootstrap().Button().Text("Top").Tooltip(new Tooltip("Tooltip in Top").Placement("top")) @Html.Bootstrap().Button().Text("Left").Tooltip(new Tooltip("Tooltip in Left").Placement("left")) @Html.Bootstrap().Button().Text("Right").Tooltip(new Tooltip("Tooltip in Right").Placement("right")) @Html.Bootstrap().Button().Text("Bottom").Tooltip(new Tooltip("Tooltip in Bottom").Placement("bottom"))

Tooltip Colors
@Html.Bootstrap().Button().Text("Danger").Color(BootstrapColors.Danger).HtmlAttributes(new { @class = "tooltip-danger" }).Tooltip(new Tooltip("Danger Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Warning").Color(BootstrapColors.Warning).HtmlAttributes(new { @class = "tooltip-warning" }).Tooltip(new Tooltip("Warning Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Info").Color(BootstrapColors.Info).HtmlAttributes(new { @class = "tooltip-info" }).Tooltip(new Tooltip("Info Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Success").Color(BootstrapColors.Success).HtmlAttributes(new { @class = "tooltip-success" }).Tooltip(new Tooltip("Success Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Blue").Color(BootstrapColors.Blue).HtmlAttributes(new { @class = "tooltip-blue" }).Tooltip(new Tooltip("Blue Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Pale Green").Color(BootstrapColors.Palegreen).HtmlAttributes(new { @class = "tooltip-palegreen" }).Tooltip(new Tooltip("Pale Green Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Darkorange").Color(BootstrapColors.Darkorange).HtmlAttributes(new { @class = "tooltip-darkorange" }).Tooltip(new Tooltip("Darkorange Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Magenta").Color(BootstrapColors.Magenta).HtmlAttributes(new { @class = "tooltip-magenta" }).Tooltip(new Tooltip("Magenta Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Purple").Color(BootstrapColors.Purple).HtmlAttributes(new { @class = "tooltip-purple" }).Tooltip(new Tooltip("Purple Tooltip").Placement("top")) @Html.Bootstrap().Button().Text("Maroon").Color(BootstrapColors.Maroon).HtmlAttributes(new { @class = "tooltip-maroon" }).Tooltip(new Tooltip("Maroon Tooltip").Placement("top"))

Tooltip Template & Size
@Html.Bootstrap().Button().Text("With Image").Tooltip(new Tooltip("").Placement("top")) @Html.Bootstrap().Button().Text("Large Tip").Color(BootstrapColors.Danger).HtmlAttributes(new { @class = "tooltip-danger tooltip-lg" }).Tooltip(new Tooltip("Large Tooltip").Placement("top"))
Toastr Notifications
Notifications All Around The Page

Colored Notifications

Notification With Html Content
Pop Overs

Dark Popover top

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Popover right

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Popover bottom

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Popover left

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Popover

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Inverted Popover

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.


Popover On Buttons
@Html.Bootstrap().Button().Text("Popover on Click").Popover(new Popover("Simple Popover", "Vivamus sagittis lacus vel augue laoreet rutrum faucibus.").Placement("top")) @Html.Bootstrap().Button().Text("PopOver With Html Content").Popover(new Popover("PopOver With Html Content", "").Placement("top")) @*TODO: Will be Implemented Soon*@ Popover on Hover
@section PageScripts{ }