Closed profnimrod closed 9 years ago
Here is an example taken from BMVC Docs:
@(Html.Bootstrap().TextBoxFor(m => m.Amount)
.Placeholder("amount in dollars")
.Prepend("$")
.Append(".00")
.Append(Html.Bootstrap().Button().Text("Save")))
My goodness... How did I miss that example from the first page of the documentation!!?!?! Apologies for the oversight Dmitry and many thanks indeed for your rapid response.
Is there a way to add the form submit button to the end of the input box using TBSMVC, like in the example below:
I have this so far:
I want to send the SearchTerm to another View ("SearchResults") when the "Go!" button is clicked.
Apologies for using "issues" so such questions.