也許你可以重寫爲sys_categories的TCA部分,樹配置支持自定義在PX。
這裏閱讀:https://docs.typo3.org/typo3cms/TCAReference/6.2/Reference/Columns/Select/Index.html#treeconfig
如果你想100%的寬度,有一個自己的後臺皮膚的css文件中的更簡單的方法。只需註冊爲後端css文件的文件夾中擴展或主題擴展ext_tables.php
文件:
$TBE_STYLES['skins'][$_EXTKEY]['name'] = $_EXTKEY;
$TBE_STYLES['skins'][$_EXTKEY]['stylesheetDirectories']['structure'] = 'EXT:' . ($_EXTKEY) . '/Resources/Public/Backend/Css/Skin/';
將其中與此內容的css文件:
div.x-tree {
width: 100%!important;
}
div.x-tree .x-panel-tbar {
width: 100%!important;
}
div.x-tree .x-panel-tbar .x-toolbar {
width: 100%!important;
}
div.x-tree .x-panel-body {
width: 100%!important;
}
清除緩存和重新加載後端。樹應該以100%呈現。這會影響後端中所有配置的樹視圖。沒有選擇器僅選擇sys_categories樹視圖。
希望它有幫助。
嗨Manfred。非常感謝你。我已經用我自己的樣式表做過了,就像你解釋過的一樣。 – user2310852