<render-mode> 无法使用动态 Material UI
<render-mode> not working with dynamic Material UI
我使用 标签在我的屏幕中包含一些 html:
<?xml version="1.0" encoding="UTF-8"?>
<screen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://moqui.org/xsd/xml-screen-2.1.xsd"
require-authentication="anonymous-all">
<widgets>
<label type="h1" text="Hello world!"/>
<render-mode>
<text type="html,vuet" location="component://tutorial/template/hello.html"/>
</render-mode>
<label type="h1" text="after Hello world!"/>
</widgets>
</screen>
包含的hello.html文件在使用“标准UI”或“动态BootstrapUI”时显示正常,但在使用“动态 Material UI”。
有没有办法启用它?我更喜欢动态 Material UI.
的外观和导航
谢谢!
它不显示在 qapps 下的原因是 qapps 使用新的渲染模式 'qvt' 就像 vapps 使用渲染模式 'vuet' 一样。要使其显示在 /qapps 下,只需更改:
<text type="html,vuet" ...
至:
<text type="html,vuet,qvt" ...
我使用
<?xml version="1.0" encoding="UTF-8"?>
<screen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://moqui.org/xsd/xml-screen-2.1.xsd"
require-authentication="anonymous-all">
<widgets>
<label type="h1" text="Hello world!"/>
<render-mode>
<text type="html,vuet" location="component://tutorial/template/hello.html"/>
</render-mode>
<label type="h1" text="after Hello world!"/>
</widgets>
</screen>
包含的hello.html文件在使用“标准UI”或“动态BootstrapUI”时显示正常,但在使用“动态 Material UI”。 有没有办法启用它?我更喜欢动态 Material UI.
的外观和导航谢谢!
它不显示在 qapps 下的原因是 qapps 使用新的渲染模式 'qvt' 就像 vapps 使用渲染模式 'vuet' 一样。要使其显示在 /qapps 下,只需更改:
<text type="html,vuet" ...
至:
<text type="html,vuet,qvt" ...