2.为什么UI显示一些中文(我认为)字符?
(在附件上显示蓝色椭圆)
3.未显示“关闭”图标和“保存”/“不保存”按钮图标。
盯着其中一个最后更新我已经对2sxc加载项做了(我认为它是在其中一个版本中
在v08.05.01之后)...
(... 我猜[2]和[3]是相关的 ...)
(在附件上显示绿色椭圆)
答案 0 :(得分:1)
......而且 - 正如我猜测的那样 - 非常简单......
如果有任何人遇到这种情况,我目前在 @JeremyWeir 中找到answer的解决方案:
将此添加到 DNN 的 root 目录中的 web.config (例如“c:\ inetpub \ wwwroot \ [ DNN ] \ web.config“):
<configuration>
<system.webServer>
<staticContent>
<!--
remove first in case they are defined in IIS already,
which would cause a runtime error
-->
<remove fileExtension=".woff" />
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2" />
</staticContent>
</system.webServer>
</configuration>
我还添加了 eot , otf , svg 和 ttf 与in this answer建议的 @Steve Eynon 相同
答案 1 :(得分:0)
这也发生在我身上。我在github上打开了一个问题 DateTime picker not showing time pick
你可以关注它:)