| 1234567891011121314151617181920212223 | <div data-options="dxView : { name: 'PointLocationMapping', title: '@viewPointLocationMapping', pane: 'master' } ">  <div data-bind="dxCommand: { action: handleButtonSearchPointView , id: 'create', title: '@point', disabled: hasnotModificationPermission, icon: 'search' }"></div>  <div data-bind="dxCommand: { action: refreshList, id: 'refresh', title: 'Refresh', icon: 'refresh' }"></div>  <div data-options="dxContent : { targetPlaceholder: 'content' } ">    <div data-options="dxViewPlaceholder: { viewName: 'SideMenu' }"></div>    <div data-options="dxViewPlaceholder: { viewName: 'PointSearchPopup' }"></div>    <div data-options="dxViewPlaceholder: { viewName: 'PointSearchPopupSearchConditionView' }"></div>    <div class="fl width_35per">      <p class="body_sub_title">위치 정보</p>      <div class="tree_wrap_box" style="height:706px">        <div style="width: 100%;" id="locationTreeView" />      </div>    </div>    <div style="float:right; display:inline-block; width: 60%;">      <p class="body_sub_title">할당된 관제점 목록</p>      <div id="datagrid" data-bind="dxDataGrid: dataGridOptions" />      <div style="clear:both" />    </div>    <div style="float:right; clear: both;" data-bind="dxButton: { icon: 'remove', type: 'warning', text: '@delete', clickAction: handleRemoveSelectedPoints, disabled: hasnotModificationPermission }" />  </div></div>
 |