@using FacilitiesManagement.Models @model FacilitiesManagement.Models.OrderRequest
@Html.LabelFor(model => model.TransactionType, new { @class = "control-label col-md-4" })
@Html.EditorFor(model => model.TransactionType) @Html.ValidationMessageFor(model => model.TransactionType)
@Html.LabelFor(model => model.RequiredReleaseDate, new { @class = "control-label col-md-4" })
@Html.EditorFor(model => model.RequiredReleaseDate) @Html.ValidationMessageFor(model => model.RequiredReleaseDate)
@Html.LabelFor(model => model.GlAccount, new { @class = "control-label col-md-4" })
@(Html.Kendo().ComboBoxFor(m => m.GlAccount).DataValueField("Number").DataTextField("Description").Filter(FilterType.Contains).HighlightFirst(true) .DataSource(src => src.Read(read => read.Action("GetGlAccounts", "Lookup", new { area = "" }))).Events(events => events.Change("app.common.onChangeRestrictValues"))) @Html.ValidationMessageFor(model => model.GlAccount)
@Html.LabelFor(model => model.ReferenceNumber, new { @class = "control-label col-md-4" })
@Html.EditorFor(model => model.ReferenceNumber) @Html.ValidationMessageFor(model => model.ReferenceNumber)
@Html.LabelFor(model => model.CapitalProjectNum, new { @class = "control-label col-md-4" })
@Html.EditorFor(model => model.CapitalProjectNum) @Html.ValidationMessageFor(model => model.CapitalProjectNum)
@Html.LabelFor(model => model.Location, new { @class = "control-label col-md-4" })
@Html.EditorFor(model => model.Location) @Html.ValidationMessageFor(model => model.Location)
@Html.LabelFor(model => model.Department, new { @class = "control-label col-md-4" })
@Html.EditorFor(model => model.Department) @Html.ValidationMessageFor(model => model.Department)
@Html.LabelFor(model => model.BudgetYear, new { @class = "control-label col-md-4" })
@Html.EditorFor(model => model.BudgetYear) @Html.ValidationMessageFor(model => model.BudgetYear)