Commit e9e1ed5c by NGUYEN LONG CHAN

44120: 【Check CMS 1.4.0_2】カテゴリー選択について

- Add function to display breadcrumbs.
parent 686bb4df
......@@ -3482,6 +3482,8 @@ CHK.resetSearch = function() {
CHK.openCategory = function() {
loadCategoryTree();
window.scrollTo(0,0);
if ($("#category-menu").hasClass("open")) {
$("body").css("overflow", "visible");
......@@ -3490,6 +3492,34 @@ CHK.openCategory = function() {
}
}
// load category tree same as header
function loadCategoryTree() {
if (!CHK.operationGroupMasterId) return;
const groupMaster = CHK.operationGroupMaster.operationGroupMasterList.find(it => it.operationGroupMasterId == CHK.operationGroupMasterId);
if (!groupMaster) return;
const groupMasterPathIdlist = groupMaster.treePath.split('/').map(Number);
if (groupMasterPathIdlist.length > 1) {
for (let i = 0; i < groupMasterPathIdlist.length; i++) {
const parentId = groupMasterPathIdlist[i];
const element = $('#groupMasterId_' + parentId);
if (!element.length) continue;
if (i < groupMasterPathIdlist.length - 1) {
element.children().first().hasClass('menu-ttl')
? element.find("dt")?.click()
: element.find('.sub-menu-ttl:first')?.click();
} else {
element.find('.category-a:first')?.css('font-weight', 'bold');
}
}
} else {
$('#groupMasterId_' + groupMasterPathIdlist[0] + ' a:first')?.css('font-weight', 'bold');
}
}
//save, load json
CHK.saveJson = function(jsonFileName, jsonData) {
var param = {};
......
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