Back/nexacro

nexacro database 검색 및 페이징
name 작성자 subject 제목 content 제목 + 내용 all 전체 this.Button00_onclick = function(obj:nexacro.Button,e:nexacro.ClickEventInfo){ var type = this.type.value; var keyword = this.keyword.text; var stDate = this.stDate.value; var endDate = this.endDate.value; this.searchDataset.addRow(); this.searchDataset.setColumn(0, "type", type); this.searchDataset.setColumn(0, "keyword", keyword); this.searchDataset.s..

nexacro Database 불러오기 (No licence)
this.Button00_onclick = function(obj:nexacro.Button,e:nexacro.ClickEventInfo) { // var id = "lookup"; // var url = "http://localhost:8090/project/nexTest"; // var reqDs = ""; // var respDs = "boardStudy=boardStudy"; // var args = ""; // var callback = "listCall"; // // this.transaction(id, url, reqDs, respDs, args, callback); this.transaction("lookup", "http://localhost:8090/project/nexTest", ""..

nexacro 성적입력
this.Button00_onclick = function(obj:nexacro.Button,e:nexacro.ClickEventInfo) { var row = this.list.addRow(); /*this.list.setColumn(row,컬럼명, 들어갈거)*/ // 이름 넣기 this.list.setColumn(row, "list_name", this.stName.value); // 학번 넣기 this.list.setColumn(row, "list_number", this.stNum.value); // 성별 넣기 this.list.setColumn(row, "list_gender", this.gender1.value); // 전화번호 합치기 var Phone = this.Phone1.value + ..