[9227] | 1 | @model HeuristicLab.Services.Optimization.Web.Models.ExperimentViewModel
|
---|
[9305] | 2 | <script type="text/template" id="node_template">
|
---|
| 3 | <li><%= title%></li>
|
---|
| 4 | </script>
|
---|
[9227] | 5 |
|
---|
[9305] | 6 | <script type="text/template" id="tree_template">
|
---|
| 7 | <div id="<%= id %>" class="treeStyle">
|
---|
| 8 | <ul>
|
---|
| 9 | </ul>
|
---|
| 10 | </div>
|
---|
| 11 | </script>
|
---|
[9227] | 12 |
|
---|
[9305] | 13 | <script type="text/template" id="draggable_template">
|
---|
| 14 | <div id="<%= nodeId %>" data-isExperiment="<%= isExperiment%>" data-name="<%= title%>" class="dragables"><p><%= title %></p></div>
|
---|
| 15 | </script>
|
---|
[9227] | 16 |
|
---|
[9305] | 17 | <script type="text/template" id="stepwizard_template">
|
---|
| 18 | <input style="margin-top:5px;" class="remove-button" name="RemoveNode" type="button" value="Remove" disabled="disabled" />
|
---|
| 19 | <input style="margin-top:5px;" class="variate-button" name="VariateNode" type="button" value="Variate" disabled="disabled" />
|
---|
| 20 | </script>
|
---|
[9227] | 21 |
|
---|
[9305] | 22 | <script type="text/template" id="parameter_template">
|
---|
| 23 | <div>
|
---|
| 24 | <div class="leftEntry"><%= Name %>:</div>
|
---|
| 25 | <div class="rightEntry"></div>
|
---|
| 26 | </div>
|
---|
| 27 | </script>
|
---|
[9227] | 28 |
|
---|
[9305] | 29 | <script type="text/template" id="validationhints_template">
|
---|
| 30 | <div class="validator" title="<%= header %>">
|
---|
| 31 | <p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>
|
---|
| 32 | <%= text %>
|
---|
| 33 | </p>
|
---|
| 34 | </div>
|
---|
| 35 | </script>
|
---|
[9227] | 36 |
|
---|
[9305] | 37 | <script type="text/template" id="variationdialog_template">
|
---|
| 38 | <div class="variationDialog" title="Variate algorithm">
|
---|
| 39 | <h1>Select parameter</h1>
|
---|
| 40 | <select class="variationDialogContent">
|
---|
| 41 | </select>
|
---|
| 42 | <input type="checkbox" name="active" /> Active
|
---|
| 43 | <div class="variationDetails">
|
---|
| 44 | </div>
|
---|
| 45 | </div>
|
---|
| 46 | </script>
|
---|
[9227] | 47 |
|
---|
[9305] | 48 | <script type="text/template" id="variationentry_template">
|
---|
| 49 | <option data-index='<%= Index %>'><%= Name %></option>
|
---|
| 50 | </script>
|
---|
[9227] | 51 |
|
---|
[9305] | 52 | <script type="text/template" id="variationcontent_template">
|
---|
| 53 | <div>
|
---|
| 54 |
|
---|
| 55 |
|
---|
| 56 | </div>
|
---|
| 57 | </script>
|
---|
[9227] | 58 |
|
---|
[9305] | 59 | <script type="text/template" id="variation_boolean_template">
|
---|
| 60 | <p>Boolean paramter: True / False</p>
|
---|
| 61 | </script>
|
---|
[9227] | 62 |
|
---|
[9305] | 63 | <script type="text/template" id="variation_number_template">
|
---|
| 64 | <div>
|
---|
| 65 | <input type="button" name="generate" value="Generate..."/>
|
---|
| 66 | <div></div>
|
---|
| 67 | </div>
|
---|
| 68 | </script>
|
---|
[9227] | 69 |
|
---|
[9305] | 70 | <script type="text/template" id="checkbox_template">
|
---|
| 71 | <div>
|
---|
[9324] | 72 | <input type="checkbox" name="<%=name%>"
|
---|
| 73 | <% if (checked) { %>
|
---|
| 74 | checked
|
---|
| 75 | <% } %>
|
---|
| 76 | />
|
---|
| 77 | <% if (!hideText) { %>
|
---|
| 78 | <%=text%><br/>
|
---|
| 79 | <% } %>
|
---|
[9305] | 80 | </div>
|
---|
[9324] | 81 | </script>
|
---|
[9227] | 82 |
|
---|
[9305] | 83 | <script type="text/template" id="variation_generator_template">
|
---|
| 84 | <div title="Generate Values">
|
---|
| 85 | <div class="leftEntry">Minimum:</div>
|
---|
| 86 | <div class="rightEntry"><input type="text" name="minimum" value="0"/></div>
|
---|
| 87 | <div class="leftEntry">Maximum:</div>
|
---|
| 88 | <div class="rightEntry"><input type="text" name="maximum" value="2"/></div>
|
---|
| 89 | <div class="leftEntry">Step:</div>
|
---|
| 90 | <div class="rightEntry"><input type="text" name="step" value="1"/></div>
|
---|
| 91 | </div>
|
---|
| 92 | </script>
|
---|
[9227] | 93 |
|
---|
[9305] | 94 | <script type="text/template" id="loading_template">
|
---|
| 95 | <div>
|
---|
| 96 | <p>Loading ... </p>
|
---|
| 97 | <img src="@Url.Content("~/Content/ajax-loader.gif")" alt="Loading animation" class="loader" />
|
---|
| 98 | </div>
|
---|
| 99 | </script>
|
---|
[9227] | 100 |
|
---|
[9305] | 101 | <script type="text/javascript">
|
---|
[9324] | 102 | var controller = new OAAS_CONTROLLER.ExperimentPageController();
|
---|
[9305] | 103 | $(document).ready(function () {
|
---|
| 104 | controller.create();
|
---|
[9227] | 105 | });
|
---|
| 106 | </script>
|
---|
[9305] | 107 | <noscript>
|
---|
| 108 | <p>You need JavaScript to view this page! Please activate it in your browser settings.</p>
|
---|
| 109 | </noscript>
|
---|
[9227] | 110 |
|
---|
| 111 | <h2>Experiment</h2>
|
---|
| 112 |
|
---|
[9305] | 113 | <div id="stepWizard" class="wizard swMain">
|
---|
[9227] | 114 | <ul>
|
---|
| 115 | <li>
|
---|
| 116 | <a href="#step1">
|
---|
| 117 | <label class="stepNumber">1</label>
|
---|
| 118 | <span class="stepDesc">
|
---|
| 119 | Structure<br />
|
---|
| 120 | <small>Build your experiment</small>
|
---|
| 121 | </span>
|
---|
| 122 | </a>
|
---|
| 123 | </li>
|
---|
| 124 | <li>
|
---|
| 125 | <a href="#step2">
|
---|
| 126 | <label class="stepNumber">2</label>
|
---|
| 127 | <span class="stepDesc">
|
---|
| 128 | Customization<br />
|
---|
| 129 | <small>Change experiment parameters</small>
|
---|
| 130 | </span>
|
---|
| 131 | </a>
|
---|
| 132 | </li>
|
---|
| 133 | <li>
|
---|
| 134 | <a href="#step3">
|
---|
| 135 | <label class="stepNumber">3</label>
|
---|
| 136 | <span class="stepDesc">
|
---|
| 137 | Experiment Details<br />
|
---|
| 138 | <small>Set name of experiment</small>
|
---|
| 139 | </span>
|
---|
| 140 | </a>
|
---|
| 141 | </li>
|
---|
| 142 | </ul>
|
---|
| 143 | <div id="step1">
|
---|
| 144 | <fieldset>
|
---|
| 145 | <div>
|
---|
| 146 | <p>Experiment Tree:</p>
|
---|
| 147 | </div>
|
---|
[9305] | 148 | <div id="container" class="treeStyle"></div>
|
---|
| 149 | <p>Choose an algorithm:</p>
|
---|
[9324] | 150 | <div id="algorithms">
|
---|
| 151 | <span>Loading ... <img src="@Url.Content("~/Content/ajax-loader.gif")" alt="Loading animation" /> </span>
|
---|
| 152 | </div>
|
---|
[9305] | 153 | <div class="clearer"></div>
|
---|
| 154 | <p>Choose from your stored experiments:</p>
|
---|
[9324] | 155 | <div id="experiments">
|
---|
| 156 | <span>Loading ... <img src="@Url.Content("~/Content/ajax-loader.gif")" alt="Loading animation" /> </span>
|
---|
| 157 | </div>
|
---|
[9227] | 158 | </fieldset>
|
---|
| 159 | </div>
|
---|
| 160 | <div id="step2">
|
---|
[9305] | 161 | <h2>Click on a experiment to adjust its parameters:</h2>
|
---|
| 162 | <div id="container2" class="treeStyle"></div>
|
---|
[9227] | 163 | </div>
|
---|
| 164 | <div id="step3">
|
---|
| 165 | <div class="editor-label">
|
---|
| 166 | <label for="name">Experiment Template Name:</label>
|
---|
| 167 | </div>
|
---|
| 168 |
|
---|
| 169 | <div class="editor-field">
|
---|
| 170 | <input id="name" name="Name" type="text" value="My Experiment" />
|
---|
| 171 | </div>
|
---|
| 172 |
|
---|
| 173 | <div class="editor-label">
|
---|
| 174 | <label for="name">Run experiment immediately?</label>
|
---|
| 175 | </div>
|
---|
| 176 |
|
---|
| 177 | <div class="editor-field">
|
---|
| 178 | <input id="runImmediately" name="RunImmediately" type="checkbox" />
|
---|
| 179 | </div>
|
---|
| 180 |
|
---|
| 181 | <div class="editor-label">
|
---|
| 182 | <label for="name">Repititions</label>
|
---|
| 183 | </div>
|
---|
| 184 |
|
---|
| 185 | <div class="editor-field">
|
---|
| 186 | <input id="repititions" name="Repititions" type="text" value="1" disabled="disabled" />
|
---|
| 187 | </div>
|
---|
| 188 |
|
---|
| 189 | <div class="editor-label">
|
---|
| 190 | <label for="name">Group</label>
|
---|
| 191 | </div>
|
---|
| 192 |
|
---|
| 193 | <div class="editor-field">
|
---|
| 194 | <input id="group" name="Group" type="text" value="TESTAZURE" disabled="disabled" />
|
---|
| 195 | </div>
|
---|
[9305] | 196 | </div>
|
---|
[9227] | 197 | </div>
|
---|
| 198 |
|
---|
[9305] | 199 | <div id="parameterDialog">
|
---|
| 200 | <div id="parameterDialog-content">
|
---|
| 201 | </div>
|
---|
[9227] | 202 | </div>
|
---|
| 203 |
|
---|
[9305] | 204 | <div id="loadingDialog">
|
---|
| 205 | </div>
|
---|
| 206 |
|
---|
| 207 | @section submenu {
|
---|
| 208 | <ul>
|
---|
[9324] | 209 | <li class="selected">@Html.ActionLink("Build", "New", "Experiment")</li>
|
---|
| 210 | <li>@Html.ActionLink("Edit", "NewEdit", "Experiment")</li>
|
---|
[9305] | 211 | <li>@Html.ActionLink("Status", "Index", "Status")</li>
|
---|
| 212 | </ul>
|
---|
| 213 | } |
---|