Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/DisplayTemplates/DecimalMatrix.cshtml @ 8506

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

#1888:

  • Web project now creates custom html for each type we want to enter / display
  • Added endpointConfigurationName to HiveServiceLocator (because Web Project contains more than one endpoint configuration)
  • Removed logging statement from ConfigurationService to prevent exception during failure of loading ConfigurationSettings
  • ApplicationManager: Changed default implementation to WebApplicationManager (instead of LightWeight) for testing purposes within Web Project
  • WebApplicationManager: The application manager which returns plugin descriptors from the currently loaded assemblies (instead of LightweightAppManager)
  • HiveService: Fixed a transaction bug
  • IControllerService: Created a method to dispatch Scenarios to certain IScenarioManager (in this case HiveScenarioManager)
  • Added more mappable types to ControllerModel
  • PlaceholderControllerService dispatches all Scenarios to the HiveScenarioManager
  • Web project now dispatches the scenario to the controller after pressing "Run Job"
File size: 354 bytes
Line 
1@model HeuristicLab.Services.Optimization.ControllerService.Model.DecimalMatrix
2
3<table>
4  <tr>
5    <th>@Model.Name</th>
6  </tr>
7  @for (int i = 0; i < Model.Value.Length; i++) {
8  <tr>
9    @for (int j = 0; j < Model.Value[j].Length; j++) {                     
10    <td>
11      @Model.Value[i][j]
12    </td>
13    }
14  </tr>
15  }
16</table>
Note: See TracBrowser for help on using the repository browser.