We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to be able to add a input group, so that I can show a currency symbol before the input field. I have no way of doing that.
This is the call today.
@f.FormGroup().EditorFor(m => m.StartPrice).Label().HelpIcon()
I need something like so...
@f.FormGroup().EditorFor(m => m.StartPrice).AppendInputGroup("$").Label().HelpIcon()
and produce...
<div class="input-group"> <span class="input-group-addon">$</span> <input type="text" class="form-control" aria-label="Amount (to the nearest dollar)"> </div>
The text was updated successfully, but these errors were encountered:
Why can't you use @TextBoxFor:
@TextBoxFor
@Html.Bootstrap().TextBoxFor(m => m.UserName).Prepend("$").Label().HelpIcon()
Sorry, something went wrong.
I am using a FormGroup first. I need the EditorFor because it utilizes the metadata that is applied to the property, a TextBoxFor does not.
No branches or pull requests
I need to be able to add a input group, so that I can show a currency symbol before the input field. I have no way of doing that.
This is the call today.
I need something like so...
and produce...
The text was updated successfully, but these errors were encountered: