Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/OpenFilePartials/DataPartials/Bool.cshtml @ 13827

Last change on this file since 13827 was 13827, checked in by jlodewyc, 9 years ago

#2582 Parameter changing busy, save file, download file and email on pass reset

File size: 480 bytes
Line 
1@model HeuristicLab.Clients.Hive.WebJobManager.ViewModels.Jobs.DataPackageVM
2@using HeuristicLab.Data;
3@using HeuristicLab.Core;
4
5<td>
6    <input type="checkbox"
7           @(Model.Data.ActualValue.ToString() == "True" ? "checked" : "")
8           data-toggle="toggle"
9           data-onstyle="warning"
10           onchange="paraEdit(@Model.Position,'@Model.Problem.ToString()',
11           '@Model.Data.Name', '@Model.Data.DataType.ToString()',this.checked)"/>
12</td>
Note: See TracBrowser for help on using the repository browser.