是否可以在不使用freemarker的情况下制作小部件?

时间:2012-02-15 11:09:25

标签: ofbiz

我正在使用Netbeans IDE.in ofbiz中的ofbiz我们使用freemarker模板制作小部件,这些模板呈现网页但是可以制作没有freemarker的小部件,是否可以直接在任何screens.xml或任何屏幕中添加html和css xml文件,如果是,那么如何?

2 个答案:

答案 0 :(得分:0)

从您的问题中不清楚您想要实现的目标。 OFBiz小部件在内部使用freemarker片段来呈现html,如果你想查看一个没有freemarker的实现,请查看org.ofbiz.widget.html包。

如果你想在你的页面中使用html / css,只需使用freemarker(带标签)并在freemarker中写下你的html / css。

答案 1 :(得分:0)

如果你想避免使用freemarker,那么你需要不同的模板引擎,你需要将它集成。

是的,您可以在屏幕内直接使用html。

<decorator-section name="body">
                        <platform-specific>
                            <html>
                                <html-template location="component://practice/webapp/practice/Person.ftl"/>
                            </html>
                        </platform-specific>
                    </decorator-section>

https://cwiki.apache.org/OFBIZ/ofbiz-tutorial-a-beginners-development-guide.html

https://cwiki.apache.org/OFBIZ/understanding-the-ofbiz-widget-toolkit.html