When I user this targ on a page like:
@Html.TextBoxFor(model => model.JobName, new { @class = "form-control" })
It can work, But when I use like this:
@Html.TextBoxFor(model => model.JobName, new { @data-provide="typeahead", })
then it can't work, because this attribute: data-provide, it have a symbol which is '-', how I can solve this problem?