Commit 55ef29e7 by Masaru Abe

#14287 ジャンルツリー第一階層を開く

parent 72f4ab05
......@@ -811,8 +811,9 @@ HOME.getDataJsonFileGenre = function() {
node.Value = HOME.dataGenre[i].categoryId;
node.ContentCount = HOME.dataGenre[i].contentCount;
HOME.AddChidrenNodeGenre(node);
//#13200 カテゴリツリーの階層プラス・マイナスのアイコンが逆
//node.IsClosed = false;
//node.IsClosed = false; //#13200 カテゴリツリーの階層プラス・マイナスのアイコンが逆
node.ExpandAfterBuild = true; //#14287 第一階層を開くようにする
node.IsCategory = node.ChildNodes.length > 0; // Has child node
arrData.push(node);
......@@ -831,6 +832,27 @@ HOME.getDataJsonFileGenre = function() {
$('#all').css('text-decoration', 'underline');
$('.treeview > li').addClass('tabCategory');
// Expand nodes(#14287 第1階層を開くようにする)
for (var nIndex = 0; nIndex < tree1.ExpandNodes.length; nIndex++) {
if ($("#" + tree1.ExpandNodes[nIndex]).parent()) {
var objParent = $("#" + tree1.ExpandNodes[nIndex]).parent();
var objChild = objParent.children()[0];
if (objChild) {
try {
objChild.click();
}
catch (err) {
// For safari
var evObj = document.createEvent('MouseEvents');
evObj.initMouseEvent('click', true, true, window);
objChild.dispatchEvent(evObj);
}
}
}
}
});
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment