@using OSS.Models @model CompanyShareholderExternal @{ Layout = "~/Views/Shared/_Layout.cshtml"; }

  PROJECTS New Certificate

@using (Html.BeginForm("PostCompanyMember", "PublicCompany", FormMethod.Post, new { id = "social", @novalidate = "novalidate", @class = "needs-validation text-left section social" })) { @Html.AntiForgeryToken()
@ViewBag.Error

 Shareholder Details


@Html.DropDownListFor(m => m.CategoryofShares, new List{ new SelectListItem{ Text="Natural Person", Value = "Natural Person" }, new SelectListItem{ Text="Company", Value = "Company" }, new SelectListItem{ Text="Goverment", Value = "Government" }, new SelectListItem{ Text="Organization", Value = "Organization" }, }, new { @class = "selectpicker form-control", @id = "AreaType", @name = "AreaType", @placeholder = "Sex Type", @required = "true", @value = "Please Select" })
Invalid Input
@Html.TextBoxFor(m => m.LastName, new { @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.LastName, new { @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.LastName, new { @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.LastName, new { @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.LastName, new { @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.MiddleName, new { @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.LastName, new { @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.DropDownListFor(m => m.Country, new SelectList(Model.ListofCountries , "Value", "Text"), new { @class = "selectpicker form-control", @id = "Country", @name = "Country" })
Invalid Input
@Html.DropDownListFor(m => m.CategoryofShares, new List{ new SelectListItem{ Text="Local", Value = "Foreign" }, new SelectListItem{ Text="Foreign", Value = "Foreign" }, }, new { @class = "selectpicker form-control", @id = "AreaType", @name = "AreaType", @placeholder = "Sex Type", @required = "true", @value = "Please Select" })
Invalid Input
@Html.TextBoxFor(m => m.NIDAorPassport, new { @name = "CompanyTIN", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input
@Html.TextBoxFor(m => m.Country, new { @name = "LastName", @class = "form-control mb-4", @id = "LastName", @type = "text", @required = "true" })
Invalid Input

  List of Shareholders


@(Html.DevExtreme().DataGrid() .ID("gridContainer1") .ShowBorders(true) .Columns(columns => { columns.Add().DataField("CMName"); columns.Add().DataField("CompanyTypeName"); columns.Add().DataField("TrackingNo"); columns.Add().DataField("ControlNo"); columns.Add().DataField("InvoiceNo"); columns.Add().DataField("PaymentStatus"); columns.Add().DataField("AmountTotal").Visible(true).DataField("AmountTotal") .Caption("Print").CellTemplate(@Html.ActionLink(" Processing", "DisplayResultClearance", "Company", new { TrackingNo = "APP_ID" }, new { @class = "btn btn-outline-warning" }) .ToHtmlString() .Replace("APP_ID", "<%= data.TrackingNo %>")); ; }).RemoteOperations(true) .AllowColumnResizing(true) .ShowRowLines(true) .SearchPanel(f => f.Visible(true) .SearchVisibleColumnsOnly(true) .HighlightSearchText(true) ).Paging(p => p.PageSize(5)) .SearchPanel(t => t.SearchVisibleColumnsOnly(true).Visible(true)) .DataSource(d => d.StaticJson().Url("/ApplicationStatusAPI/GetProcessingCMApp").Key("InvoiceNo")) )

}