cf43c8a92f29a31ca2b153e139ee3b6dcc96def7.svn-base 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <div data-options="dxView : { name: 'Formula', title: '@viewFormula', pane: 'master' } ">
  2. <div data-bind="dxCommand: { action: refreshList, id: 'refresh', title: 'Refresh', icon: 'refresh' }"></div>
  3. <div data-bind="dxCommand: { action: saveFormula , id: 'save', title: '@formulaSave', disabled: hasnotModificationPermission, icon: 'save' }"></div>
  4. <div data-options="dxContent : { targetPlaceholder: 'content' } ">
  5. <div data-options="dxViewPlaceholder: { viewName: 'SideMenu' }"></div>
  6. <div data-options="dxViewPlaceholder: { viewName: 'FormulaPointPopup' }"></div>
  7. <div data-options="dxViewPlaceholder: { viewName: 'PointSearchConditionView' }"></div>
  8. <div class="fl width_25per">
  9. <p class="body_sub_title">수식 목록</p>
  10. <div class="tree_wrap_box" style="height:706px">
  11. <div style="width: 100%;" id="formulaTreeView" />
  12. </div>
  13. </div>
  14. <div class="fl width_35per" style="margin-left: 10px;">
  15. <p class="body_sub_title">수식 내용</p>
  16. <div class="info_data_grid">
  17. <table width="100%">
  18. <caption class="skip">장비상세정보</caption>
  19. <colgroup>
  20. <col width="30%" />
  21. <col width="auto"/>
  22. </colgroup>
  23. <thead class="skip">
  24. <tr>
  25. <th>이름</th>
  26. <th>수식</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. <tr>
  31. <td class="info_item">이름 :</td>
  32. <td class="info_content" data-bind="text: formulaDataViewModel.Name()"></td>
  33. </tr>
  34. <tr>
  35. <td class="info_item">수식 :</td>
  36. <td class="info_content"><div data-bind="dxTextBox: { value: formulaDataViewModel.Formula, valueChangeAction: formulaValueChangeAction }"></div></td>
  37. </tr>
  38. </tbody>
  39. </table>
  40. <div style="margin-top: 8px;" id="tableDataGrid" data-bind="dxDataGrid: tableDataGridOptions" />
  41. <div style="margin-top: 8px;" id="parameterDataGrid" data-bind="dxDataGrid: parameterDataGridOptions" />
  42. <!--<div class="button_wrap_box" style="margin-top: 8px; float:right; width: 100%;">
  43. <div style="float:right; clear: both;" data-bind="dxButton: { icon: 'remove', type: 'warning', text: '@allocatedPointRemove', clickAction: hanleRemoveSelectedParameter}" />
  44. </div>-->
  45. </div>
  46. </div>
  47. <div style="float:left; display:inline-block; width: 38%; margin-left: 10px;">
  48. <p class="body_sub_title">관제점 목록</p>
  49. <div id="pointDataGrid" data-bind="dxDataGrid: pointDataGridOptions" />
  50. </div>
  51. </div>
  52. </div>