TextBox

Simple textbox:


Using custom format:


Disabled:

TextBoxDemo/Index.cshtml
Simple textbox:<br />
@(Html.Awe().TextBox(new TextBoxOpt { Name = "Name", Placeholder = "type here...", ClearBtn = true }))
<br />
<br />
Using custom format:<br />
@(Html.Awe().TextBox(new TextBoxOpt { Name = "Exp", Value = "the actual value", FormatFunc = "valFunc" }))
<br />
<br />
Disabled:<br />
@(Html.Awe().TextBox(new TextBoxOpt { Name = "disbl", Enabled = false, Value = "abc" }))

<script>
function valFunc(val) {
return "secret";
}
</script>



Comments