var cCateList = new Array();
cCateList[0] = new sCategory("N", "6", "test", "y", "3"); ..
..
..
for (var i=0; i < cCateList.length; i++) {
// I 추가, M 수정, D 삭제, N 변경안됨 , Z : 클라이언트에서 입력 후 삭제
if (cCateList[i].type == "I" || cCateList[i].type == "M" || cCateList[i].type == "D" || cCateList[i].type == "N") {
var input = document.createElement('input');
input.type = 'hidden';
input.name = 'folderChannels';
input.value = serialize(cCateList[i]);
formObj.appendChild(input);
aInputObject.push(input);
input = document.createElement('input');
input.type = 'hidden';
input.name = 'channelNames';
input.value = cCateList[i].title;
formObj.appendChild(input);
aInputObject.push(input);
}
위소스는 정말 신선하게 다가왔다. 어떻게 저렇게 만들어 submit까지 날려버리는지
최초개발자분에게 박수를 보내고 싶다 .
cCateList[0] = new sCategory("N", "6", "test", "y", "3"); ..
..
..
for (var i=0; i < cCateList.length; i++) {
// I 추가, M 수정, D 삭제, N 변경안됨 , Z : 클라이언트에서 입력 후 삭제
if (cCateList[i].type == "I" || cCateList[i].type == "M" || cCateList[i].type == "D" || cCateList[i].type == "N") {
var input = document.createElement('input');
input.type = 'hidden';
input.name = 'folderChannels';
input.value = serialize(cCateList[i]);
formObj.appendChild(input);
aInputObject.push(input);
input = document.createElement('input');
input.type = 'hidden';
input.name = 'channelNames';
input.value = cCateList[i].title;
formObj.appendChild(input);
aInputObject.push(input);
}
위소스는 정말 신선하게 다가왔다. 어떻게 저렇게 만들어 submit까지 날려버리는지
최초개발자분에게 박수를 보내고 싶다 .