Hi Thanks for the help in advance. I have a registry form that has over 15 fields. Right now I'm using Data Annotations for validation and it's working well. What I need is to find a way to actually display an edited popover when the user mousses over the form so they know all fields are required. Right now the form has to completed and if they don't fill out a required field the user gets prompt at submit time. This is turning out to be none functional and bad design strategy. I have a popover I was testing on one field. Here is the As you might imagine this would be a lot of code for all my fields to display a message like this. I want to have a bigger popover ON THE INPUT form that would display something like this if the user mouses over the field. Adress Line 2 is a required field. Also and this is very important I need to get the popover to be bigger a different color and show up on the right off the input box for all fields. Here is my CSS code for styles
<style>
/* Tooltip */
.tooltip > .tooltip-inner {
background-color: #73AD21;
color: #FFFFFF;
border: 1px solid green;
padding: 15px;
font-size: 20px;
}
/* Tooltip on top */
.tooltip.top > .tooltip-arrow {
border-top: 5px solid green;
}
/* Tooltip on bottom */
.tooltip.bottom > .tooltip-arrow {
border-bottom: 5px solid blue;
}
/* Tooltip on left */
.tooltip.left > .tooltip-arrow {
border-left: 5px solid red;
}
/* Tooltip on right */
.tooltip.right > .tooltip-arrow {
border-right: 5px solid black;
}
@Html.LabelFor(model => model.Address2, htmlAttributes: new
{
@class = "control-label col-md-2",
data_toogle = "popover",
data_trigger = "hover",
data_container = "body",
data_placement = "right",
title = "Address2 is not mandatory"
})`