|
@Html.DropDownList("InputAccountId", ViewBag.AccountID as SelectList, "--Select Account", htmlAttributes: new { @class = "form-control" })
|
|
@Html.Editor("InputNarration", new { htmlAttributes = new { @class = "form-control", placeholder = "" } })
|
@Html.Editor("InputAmount", new { htmlAttributes = new { @class = "form-control AmountTxt", @type = "number", placeholder = "0.00", min = "0" } })
|
@Html.Editor("InputCreditAmount", new { htmlAttributes = new { @class = "form-control AmountTxt", @type = "number", placeholder = "0.00", min = "0" } })
|
|