help함수 추가

main
이범준 3 months ago
parent 3de9ae209a
commit 737bed2331

@ -0,0 +1,14 @@
function help(){
for(let item of help.prototype.list){
console.log(item);
}
}
help.prototype.list = [
"DatasetControl 클래스 : dataset을 제어하는 클래스",
"TableSupport 클래스 : dataset과 연동된 html테이블 관련 기능 지원",
"PagingSupport 클래스 : dataset과 연동된 페이징 관련 기능 지원",
"CurrentDataSupport 클래스 : dataset과 연동된 현재 데이터 UI 관련 기능 지원",
"dialog : 다이얼로그 관련 기능을 제공하는 객체",
"ajax : ajax 관련 기능을 제공하는 객체",
""
];

@ -1,3 +1,7 @@
if(window.help !== undefined){
help.prototype.list.push("AppSupport 클래스 : 웹프로젝트 내에서 공통적으로 사용할 수 있는 기능 지원");
}
class AppSupport {
static help(){

@ -1,3 +1,7 @@
if(window.help !== undefined){
help.prototype.list.push("Componentization 클래스 : 특정 HTML요소에 기능을 추가할 수 있다.");
}
class Componentization {
static help(){

@ -1,3 +1,8 @@
if(window.help !== undefined){
help.prototype.list.push("TODAY() : 현재날짜를 YYYY-MM-DD 포맷으로 반환");
help.prototype.list.push("DateSupport 클래스 : 날짜 관련 기능 지원");
}
/**************************************************************************
* 전역함수
**************************************************************************/

@ -1,3 +1,7 @@
if(window.help !== undefined){
help.prototype.list.push("StringSupport 클래스 : 문자열 관련 기능 지원");
}
class StringSupport {
static help(){

Loading…
Cancel
Save