- Timestamp:
- 10/17/12 10:57:14 (12 years ago)
- Location:
- branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/DisplayTemplates/DecimalMatrix.cshtml
r8506 r8817 7 7 @for (int i = 0; i < Model.Value.Length; i++) { 8 8 <tr> 9 @for (int j = 0; j < Model.Value[ j].Length; j++) {9 @for (int j = 0; j < Model.Value[i].Length; j++) { 10 10 <td> 11 11 @Model.Value[i][j] -
branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/EditorTemplates/DecimalMatrix.cshtml
r8506 r8817 7 7 @for (int i = 0; i < Model.Value.Length; i++) { 8 8 <tr> 9 @for (int j = 0; j < Model.Value[ j].Length; j++) {9 @for (int j = 0; j < Model.Value[i].Length; j++) { 10 10 <td> 11 11 @Html.Raw(Html.TextBoxFor(model => Model.Value[i][j]).ToString().Replace("itm.Value.Value[" + i + "][" + j + "]", Model.Name + "_" + i + "_" + j))
Note: See TracChangeset
for help on using the changeset viewer.