Initial commit: JDE Scoping Tool migration project

Set up repository with legacy .NET Framework 4.8 source (OLD/),
new .NET 10 Blazor solution (NEW/), OpenSpec specifications,
documentation, and project configuration.
This commit is contained in:
Joseph Doherty
2026-01-02 07:43:29 -05:00
commit 26ff8d9b4f
1761 changed files with 596509 additions and 0 deletions
@@ -0,0 +1,8 @@
@model decimal?
@(Html.Kendo().CurrencyTextBoxFor(m => m)
.HtmlAttributes(new {style="width:100%"})
.Min(0)
)
@@ -0,0 +1,3 @@
@model DateTime?
@(Html.Kendo().DatePickerFor(m => m))
@@ -0,0 +1,3 @@
@model DateTime?
@(Html.Kendo().DateTimePickerFor(m => m))
@@ -0,0 +1,3 @@
@model object
@Html.TextBoxFor(model => model, new {@class="k-textbox" })
@@ -0,0 +1,3 @@
@model object
@Html.TextBoxFor(model => model, new {@class="k-textbox", type="email" })
@@ -0,0 +1,6 @@
@model object
@(
Html.Kendo().DropDownListFor(m => m)
.BindTo((SelectList)ViewData[ViewData.TemplateInfo.GetFullHtmlFieldName("") + "_Data"])
)
@@ -0,0 +1,7 @@
@model int?
@(Html.Kendo().IntegerTextBoxFor(m => m)
.HtmlAttributes(new { style = "width:100%" })
.Min(int.MinValue)
.Max(int.MaxValue)
)
@@ -0,0 +1,5 @@
@model double?
@(Html.Kendo().NumericTextBoxFor(m => m)
.HtmlAttributes(new { style = "width:100%" })
)
@@ -0,0 +1,3 @@
@model object
@Html.TextBoxFor(model => model, new {@class="k-textbox", type="password" })
@@ -0,0 +1,3 @@
@model object
@Html.Kendo().TextBoxFor(model => model)
@@ -0,0 +1,3 @@
@model DateTime?
@(Html.Kendo().TimePickerFor(m => m))
+3
View File
@@ -0,0 +1,3 @@
@model object
@Html.TextBoxFor(model => model, new {@class="k-textbox", type="url" })