cf21f17bc1
Update jquery validate for IE Simplify scripting Update home page logo
24 lines
633 B
Plaintext
24 lines
633 B
Plaintext
@using ClientDependency.Core.Mvc
|
|
@model LeafWeb.WebCms.Models.ChartViewModel
|
|
@{
|
|
var selectText = "Select CurveId";
|
|
Html.RequiresCss("~/Content/glyphicon_animate.css");
|
|
Html.RequiresJs("~/scripts/Chart.js");
|
|
}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
<div>Identifier: <strong>@Model.LeafInputIdentifier</strong>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<span>CurveId:</span>
|
|
@Html.DropDownList("CurveId", new SelectList(Model.AvailableCurveId, Model.CurveId), selectText)
|
|
</div>
|
|
</div>
|
|
|
|
<img id="chart"/>
|
|
<span class="help-block">
|
|
<span id="chart-error"></span>
|
|
</span>
|