12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <div data-options="dxView : { name: 'Formula', title: '@viewFormula', pane: 'master' } ">
- <div data-bind="dxCommand: { action: refreshList, id: 'refresh', title: 'Refresh', icon: 'refresh' }"></div>
- <div data-bind="dxCommand: { action: saveFormula , id: 'save', title: '@formulaSave', disabled: hasnotModificationPermission, icon: 'save' }"></div>
- <div data-options="dxContent : { targetPlaceholder: 'content' } ">
- <div data-options="dxViewPlaceholder: { viewName: 'SideMenu' }"></div>
- <div data-options="dxViewPlaceholder: { viewName: 'FormulaPointPopup' }"></div>
- <div data-options="dxViewPlaceholder: { viewName: 'PointSearchConditionView' }"></div>
- <div class="fl width_25per">
- <p class="body_sub_title">수식 목록</p>
- <div class="tree_wrap_box" style="height:706px">
- <div style="width: 100%;" id="formulaTreeView" />
- </div>
- </div>
- <div class="fl width_35per" style="margin-left: 10px;">
- <p class="body_sub_title">수식 내용</p>
- <div class="info_data_grid">
- <table width="100%">
- <caption class="skip">장비상세정보</caption>
- <colgroup>
- <col width="30%" />
- <col width="auto"/>
- </colgroup>
- <thead class="skip">
- <tr>
- <th>이름</th>
- <th>수식</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td class="info_item">이름 :</td>
- <td class="info_content" data-bind="text: formulaDataViewModel.Name()"></td>
- </tr>
- <tr>
- <td class="info_item">수식 :</td>
- <td class="info_content"><div data-bind="dxTextBox: { value: formulaDataViewModel.Formula, valueChangeAction: formulaValueChangeAction }"></div></td>
- </tr>
- </tbody>
- </table>
- <div style="margin-top: 8px;" id="tableDataGrid" data-bind="dxDataGrid: tableDataGridOptions" />
- <div style="margin-top: 8px;" id="parameterDataGrid" data-bind="dxDataGrid: parameterDataGridOptions" />
- <!--<div class="button_wrap_box" style="margin-top: 8px; float:right; width: 100%;">
- <div style="float:right; clear: both;" data-bind="dxButton: { icon: 'remove', type: 'warning', text: '@allocatedPointRemove', clickAction: hanleRemoveSelectedParameter}" />
- </div>-->
- </div>
- </div>
- <div style="float:left; display:inline-block; width: 38%; margin-left: 10px;">
- <p class="body_sub_title">관제점 목록</p>
- <div id="pointDataGrid" data-bind="dxDataGrid: pointDataGridOptions" />
- </div>
- </div>
- </div>
|