- Timestamp:
- 01/15/13 15:50:53 (12 years ago)
- Location:
- branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/DisplayTemplates/DecimalMatrix.cshtml
r9062 r9166 10 10 @for (int i = 0; i < Model.Value.Length; i++) { 11 11 <tr> 12 @if (Model.RowNames .Length > i) {12 @if (Model.RowNames != null && Model.RowNames.Length > i) { 13 13 <th scope="row">@Model.RowNames[i]</th> 14 14 } -
branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/EditorTemplates/DecimalMatrix.cshtml
r9062 r9166 19 19 </td> 20 20 } 21 <td><a class="delete-row" href="#">Delete</a></td> 22 <td><input type="submit" name="AddRow" value="Add Row"/></td> 21 <!-- TODO: Add unique identifier for algorithm / input parameters --> 22 <td>@Html.ActionLink("-", "DeleteRow", new { paramName = @Model.Name, id = @i }) </td> 23 <td>@Html.ActionLink("+", "AddRow", new { paramName = @Model.Name, id = @i }) </td> 23 24 </tr> 24 25 } -
branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/_Layout.cshtml
r9062 r9166 19 19 <script src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.canvasTextRenderer.js")" type="text/javascript"></script> 20 20 <script src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.canvasAxisLabelRenderer.js")" type="text/javascript"></script> 21 <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.highlighter.js")"></script> 21 22 <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.barRenderer.js")"></script> 22 23 <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.categoryAxisRenderer.js")"></script>
Note: See TracChangeset
for help on using the changeset viewer.