显示 liferay 输入编辑器

Show liferay input editor

我正在尝试使用输入编辑器创建 liferay portlet。为此,我正在使用:

我尝试创建一个包含以下内容的 portlet:

<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>
<%@ taglib uri="http://alloy.liferay.com/tld/aui" prefix="aui" %>
<%@ page import="com.liferay.portal.kernel.util.UnicodeFormatter" %>

<portlet:defineObjects />

<aui:button-row cssClass="guestbook-buttons">
    <aui:button value="TESTING"></aui:button>
</aui:button-row>

<liferay-ui:input-editor initMethod="initEditor" name="mieditor">
<script type="text/javascript">
    function <portlet:namespace />initEditor() { 
        return "<%= UnicodeFormatter.toString("working") %>";
    }
</script>
</liferay-ui:input-editor>

Editor up.

前面指出的代码创建了一个带有按钮和输入编辑器的 portlet,但它不显示编辑器,只显示按钮和句子 Editor up。你可以看一张图说明我的意思:

您知道为什么 portlet 不显示输入编辑器吗?

提前致谢!

只需使用 alloy CkEditor 或 FCKeditor。 Alloy CKEditor Click here

FCKEditor click here

您错过了包含 Liferay-ui taglib.Just 将其添加到您的 jsp

<%@ taglib uri="http://liferay.com/tld/ui" prefix="liferay-ui" %>

为了将来的参考,如果您在 IDE 中开发,它会向您显示未知标签的警告,因此无法解析标签或它的特殊用途。

Liferay 在它自己的 liferay-ui 标签库中实现了 CKEditor。

如果您想以动态方式使用它,我推荐您使用 tinymce 编辑器,您可以根据需要在自己的页面中自动自定义它。