TYPO3 7.6.15 Powermail 3.18.0
日期选择器字段不会打开弹出日历。我已经缩小了原因,因为此功能没有包含必要的 CSS 文件。我的设置有错误吗?我如何让它们自动包含在内?
这就是我的 TS 设置中的内容:
plugin.tx_powermail {
view {
templateRootPaths >
templateRootPaths {
0 = {$plugin.tx_powermail.view.templateRootPath}
1 = fileadmin/template/mysite/powermail/Templates/
}
partialRootPaths >
partialRootPaths {
0 = {$plugin.tx_powermail.view.partialRootPath}
1 = fileadmin/template/mysite/powermail/Partials/
}
layoutRootPaths >
layoutRootPaths {
0 = {$plugin.tx_powermail.view.layoutRootPath}
1 = fileadmin/template/mysite/powermail/Layouts/
}
}
_LOCAL_LANG.default {
datepicker_format_date = d/m/Y
datepicker_format_time = H:i
datepicker_format_datetime = d/m/Y H:i
}
}
我发现使它正常工作的唯一方法是像这样手动添加它:
page.includeCSS {
file4 = EXT:powermail/Resources/Public/Css/Basic.css
}