gpt4 book ai didi

javascript - Modx 从特定选项卡隐藏内容字段

转载 作者:行者123 更新时间:2023-12-02 15:34:15 24 4
gpt4 key购买 nike

Modx revo 最新版本

我需要隐藏我使用表单自定义创建的特定选项卡中的内容字段,我找到了这个 Ext JS 代码,但我不知道如何实现它。它是一个插件 ondocformrender 吗?我应该创建一个js文件吗?

Ext.onReady(function(){
var tabPanel = Ext.getCmp("modx-resource-tabs");

if(tabPanel!=null){
//Add my custom tab
var customTab = {
title: 'Custom',
id: 'my-custom-tab',
cls: 'modx-resource-tab',
layout: 'fit',
labelAlign: 'top',
labelSeparator: '',
bodyCssClass: 'tab-panel-wrapper main-wrapper',
autoHeight: true,
defaults: {
border: false,
msgTarget: 'under',
width: 400,
height:800
},
items: [
{
xtype: "box",
autoEl: {cn: '<div id="target_id"></div>'}
}
]
};
tabPanel.on('tabchange', function(parent,selectedTab){
if (selectedTab.id == 'my-custom-tab') {
Ext.getCmp("modx-resource-content").hide();
}
else {
Ext.getCmp("modx-resource-content").show();
}
});
tabPanel.insert(0, customTab);
tabPanel.setActiveTab(0);
tabPanel.doLayout();
}
});

最佳答案

您不需要编辑任何ExtJS,您可以通过 Manager Customization 来完成此操作MODX 的功能。

请参阅随附的屏幕截图以供引用。

MODX Manager Customization

关于javascript - Modx 从特定选项卡隐藏内容字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33079360/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com