primefaces-extensions

Primefaces-extensions ckeditor - missing toolbar

六眼飞鱼酱① 提交于 2020-01-23 14:04:29
问题 I am trying to use the primefaces-extensions ckEditor in my JSF application, as described here. I added the dependency to my pom.xml : <dependency> <groupId>org.primefaces.extensions</groupId> <artifactId>primefaces-extensions</artifactId> <version>4.0.0</version> </dependency> This is how my view looks like: <p:growl id="editorgrowl" showDetail="true" /> <pe:ckEditor id="editor" value="#{mbEditorController.content}" toolbar="[['Cut','Copy','Paste','PasteText','PasteFromWord','-',

Primefaces-extensions ckeditor - missing toolbar

淺唱寂寞╮ 提交于 2020-01-23 14:03:34
问题 I am trying to use the primefaces-extensions ckEditor in my JSF application, as described here. I added the dependency to my pom.xml : <dependency> <groupId>org.primefaces.extensions</groupId> <artifactId>primefaces-extensions</artifactId> <version>4.0.0</version> </dependency> This is how my view looks like: <p:growl id="editorgrowl" showDetail="true" /> <pe:ckEditor id="editor" value="#{mbEditorController.content}" toolbar="[['Cut','Copy','Paste','PasteText','PasteFromWord','-',

Primefaces-extensions ckeditor - missing toolbar

不羁的心 提交于 2020-01-23 14:03:24
问题 I am trying to use the primefaces-extensions ckEditor in my JSF application, as described here. I added the dependency to my pom.xml : <dependency> <groupId>org.primefaces.extensions</groupId> <artifactId>primefaces-extensions</artifactId> <version>4.0.0</version> </dependency> This is how my view looks like: <p:growl id="editorgrowl" showDetail="true" /> <pe:ckEditor id="editor" value="#{mbEditorController.content}" toolbar="[['Cut','Copy','Paste','PasteText','PasteFromWord','-',

PrimeFaces Extensions CKEditor: cannot access custom config

允我心安 提交于 2020-01-14 05:15:06
问题 I need my pe:ckEditor to load custom config, but I have been unsuccessful in this matter for some time, I will welcome any suggestions how to make it work. (I need it do work because I have this problem: PrimeFaces Extensions CKEditor: when saving content, foreign characters get "twisted", which might be solved by this https://ckeditor.com/old/forums/CKEditor-3.x/utf-8-ckeditor or something like this https://ckeditor.com/old/forums/Support/Change-charset-UTF-8) The custom config file is in

PrimeFaces Extensions CKEditor: attempts to set encoding to UTF-8 unsuccessful

北城以北 提交于 2020-01-13 13:31:30
问题 Why I am using this editor: In the past I used PrimeFaces p:editor which is however deprecated and lacks functions that the users desperately want. I cannot use the new PrimeFaces p:textEditor because of this: Primefaces textEditor: converting text to HTML with JavaScript not working. What is it used for: I am using pe:ckEditor from PrimeFaces Extensions in my program, in which the editor is used by the user to create an e-mail message content. Then by click on a send button, the HTML from

Primefaces CKEditor wrong URL encoding

给你一囗甜甜゛ 提交于 2020-01-05 10:02:34
问题 I tried to start using Primefaces CKEditor in my project. I did all what is described here: https://github.com/primefaces-extensions/primefaces-extensions.github.com/wiki/Getting-Started But unfortunately the script of CKEditor contains wrong generated urls. (there some urls is prefixed by '.2') for example: insted of: javax.faces.resource/ckeditor/skins/moono-lisa/.2editor.css.xhtml?ln=primefaces-extensions&v=6.2.5&v=6.2 should be javax.faces.resource/ckeditor/skins/moono-lisa/editor.css

Unable to paste the context in Primefaces Extension pe:inputNumber using mouse

岁酱吖の 提交于 2020-01-04 06:43:08
问题 We've been using Primefaces (v 3.5) and Primefaces Extensions (v 0.7.0) in our project and it's been great, cheers for the developers and community! The inputNumber component takes care of pretty much all of our needs when dealing with decimal fields. The one thing that isn't working is when the user paste a value into the field using the mouse right button then paste option . When that happens, it seems these values aren't processed, since when I submit the form they are cleared, no matter

Error in Implementing PrimeFaces extensions

泄露秘密 提交于 2019-12-31 04:45:07
问题 I am new to primefaces and trying to implement the primefaces extensions. As per the guide I have added the following jars to my buildpath: 1) commons-lang3-3.1.jar 2) gson-2.3.1.jar 3) primefaces-5.0.jar 4) primefaces-5.0-sources.jar 5) primefaces-extensions-3.2.0.jar and I have created an xhtml and managed bean as suggested here: http://www.primefaces.org/showcase-ext/sections/timeline/basic.jsf Following is the error log for the same: Jun 25, 2015 4:07:05 PM com.sun.faces.context

pe:documentViewer no work with primefaces 5.1

ぃ、小莉子 提交于 2019-12-24 16:52:53
问题 pe:documentViewer doesn't work with primefaces 5.1. This code works good with PF 5.0, but in PF 5.1 shows this error: javax.servlet.ServletException: org.primefaces.util.DynamicResourceBuilder.build(Ljavax/faces/context/FacesContext;Ljava/lang/Object;Ljavax/faces/component/UIComponent;Z)Ljava/lang/String; Causa Raíz java.lang.NoSuchMethodError: org.primefaces.util.DynamicResourceBuilder.build(Ljavax/faces/context/FacesContext;Ljava/lang/Object;Ljavax/faces/component/UIComponent;Z)Ljava/lang

primefaces codeMirror doesn't load his own css and js

前提是你 提交于 2019-12-24 16:13:55
问题 I want to use codeMirror from primeface-extension with an sql syntax. I've got a 404 error when the page who contains this component load. The Css and javascript component not found. My code is the same as the example from showcase-ext codeMirror. Using primefaces 5.1 and primefaces-ext 2.1.0. Does anyone have this problem? Thank you in advance. edit: my jsf: <pe:codeMirror id="codeMirror" value="#{sandboxBean.content}" lineNumbers="true"/> <p:commandButton actionListener="#{sandboxBean