I created a custom attribute, called ToolTip. I would like to add tooltips on every property that has this attribute.
Example:
In my model I have the following property:
[Required, ToolTip("Neste campo você deve inserir um nome.")]
public string Nome { get; set; }
And in the view:
@Html.TextBoxFor(m => m.Nome, new { @class = "form-control" })
Rendering:
<input class="form-control" data-val="true" data-val-required="O campo Nome é obrigatório." id="Nome" name="Nome" type="text" value="">
I'd like you to render with the bootstrap tooltip attributes, like this:
<input data-toggle="tooltip" data-original-title="Neste campo você deve inserir um nome." class="form-control" data-val="true" data-val-required="O campo Nome é obrigatório." id="Nome" name="Nome" type="text" value="">
Any suggestions?