BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[JSP]
//전체 펼치기
//if (this.opt.expanded === true) { // this condition always fails due to variable is not defined
if (this.opt.fields != null) {
if (this.opt.fields.dataSource != null) {
var dataArr = this.opt.fields.dataSource;
$.each(dataArr, function (i, val) {
val.expanded = true
});
}
}
//}
//expanded variable is not defined
$("#subjectAreaTreeList").ifvsfTree({
allowDragAndDrop: true,
allowDropChild: false,
allowDropSibling: true,
allowDragAndDropAcrossControl: true,
fields: {
id: "id"
, text: "text"
, parentId: "parentId"
, dataSource: subjectAreaTreeData
, seq: "seq"
},
setBtn: { add: false, mod: false, del: true },
nodeSelect: subjectNodeSelect,
nodeDropped: subjectNodeDropped
});
|