Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/EditorTemplates/DecimalVector.cshtml @ 15490

Last change on this file since 15490 was 9062, checked in by fschoepp, 12 years ago

#1888:
Backend changes:

  • Simplified job state detection (only one hive call will be made to detect all states now, instead of one additional call per job)
  • Reorganized classes (moved model classes into Model folder)

Website changes:

  • Website now heavily uses JavaScript to achieve better user experience
  • JavaScript degrades gracefully, except for plots
  • Tables: Added jquery-datatable-plugin to extend tables (pagination + search functionality)
  • OaaS-Website now uses the design of the HL websites (found in WebApplication branch)
  • Added jqplot to render zoomable line plots for HL-Datatables
  • Styling.js: Plots will be generated by using an ajax call; additional jquery-styling occurs within this file.
  • Added jquery-ui-1.9.2 which is capable of handling/rendering tabs, accordions and resizers.
File size: 415 bytes
Line 
1@model HeuristicLab.Services.Optimization.ControllerService.Model.DecimalVector
2 
3<table>
4<thead>
5  <tr>
6    <th>@Model.Name</th>
7  </tr>
8  </thead>
9  <tbody>
10  @for (int i = 0; i < Model.Value.Length; i++) {
11  <tr>
12    <td>
13      @Html.Raw(Html.TextBoxFor(model => Model.Value[i]).ToString().Replace("itm.Value.Value[" + i + "]", Model.Name + "_" + i))
14    </td>
15  </tr>
16  }
17  </tbody>
18</table>
Note: See TracBrowser for help on using the repository browser.