toolPalette 수정

master
이범준 3 months ago
parent e3d75183c8
commit e337b0cc7a

@ -118,7 +118,13 @@
<div id="accordion-2" class="accordion-collapse collapse"> <div id="accordion-2" class="accordion-collapse collapse">
<div class="accordion-body"> <div class="accordion-body">
<button type="button" class="btn" <button type="button" class="btn"
onclick="tool.dsc_list;this.focus();" title="데이터셋컨트롤(목록조회)">데이터셋컨트롤(목록조회)</button> onclick="tool.dsc_list;this.focus();" title="데이터셋컨트롤(목록조회)">DatasetControl(목록조회)</button>
<button type="button" class="btn"
onclick="tool.tableSupport;this.focus();" title="그리드 스크립트">TableSupport[준비중...]</button>
<button type="button" class="btn"
onclick="tool.pagingSupport;this.focus();" title="페이징 스크립트">PagingSupport[준비중...]</button>
<button type="button" class="btn"
onclick="tool.currentDataSupport;this.focus();" title="폼 스크립트">CurrentDataSupport[준비중...]</button>
</div> </div>
</div> </div>
</div> </div>

@ -36,7 +36,10 @@ class ToolPalette {
str += "dataGrid_num : 데이터그리드(행번호 포함) \n"; str += "dataGrid_num : 데이터그리드(행번호 포함) \n";
str += "dataGrid_cb : 데이터그리드(체크박스 포함) \n"; str += "dataGrid_cb : 데이터그리드(체크박스 포함) \n";
str += "dsc_list : 데이터셋컨트롤(목록조회) 스크립트 \n"; str += "dsc_list : DatasetControl 스크립트(목록조회) \n";
str += "tableSupport : TableSupport 스크립트 \n";
str += "pagingSupport : PagingSupport 스크립트 \n";
str += "currentDataSupport : CurrentDataSupport 스크립트 \n";
console.log(str); console.log(str);
} }
@ -432,6 +435,25 @@ $(데이터셋컨트롤명.selector("[name='term']")).onEnterPress(검색버튼
데이터셋컨트롤명.querySelector("[name='이곳에thead태그의name을넣으세요'] th input[type='checkbox']").checked = false; 데이터셋컨트롤명.querySelector("[name='이곳에thead태그의name을넣으세요'] th input[type='checkbox']").checked = false;
}; };
`
);
}
get tableSupport(){
clipboardCopy(
`
`
);
}
get pagingSupport(){
clipboardCopy(
`
`
);
}
get currentDataSupport(){
clipboardCopy(
`
` `
); );
} }

Loading…
Cancel
Save