목록Programming/Wise Grid (1)
by Nathan
Wise Grid(와이즈 그리드)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 // WiseGrid 조회 WiseGrid_Test.GetCellValue("컬럼명", row); // WiseGrid 수정 WiseGrid_Test.SetCellValue("컬럼명", rowNum, document.f1.컬럼명.value); // WiseGrid 추가 WiseGrid_Test.AddRow(); var rowNum = 0; if(WiseGrid_Test.GetRowCount() != 0){ rowNum = WiseGrid_Test.GetRowCount() - 1; } WiseGrid_Test.SetCellValue("컬럼명1", ..
Programming/Wise Grid
2018. 8. 28. 16:18