Re: Submitting Japanese characters in MyFaces??

2005-06-08 Thread Bryan Dickey
I figured it out. Using did the trick for MyFaces. I'm not sure why the default enctype="application/x-www-form-urlencoded" works using the RI. Bryan >>> [EMAIL PROTECTED] 06/08/05 11:23AM >>> I hope I'm just missing something here. I'm not able to submit Japanese text and store the value in

Submitting Japanese characters in MyFaces??

2005-06-08 Thread Bryan Dickey
I hope I'm just missing something here. I'm not able to submit Japanese text and store the value in a managed bean with MyFaces. I'm using a simple encoding filter for all my pages to set charset to UTF-8. I then load the following jsp: <%@ page language="java" %> <%@ taglib uri="http://java.s

Locale issue with MyFaces (not RI)

2005-05-16 Thread Bryan Dickey
I've noticed the following Locale issue in MyFaces (1.0.8) not seen in Sun's RI (1.1_01): Unicode character escape sequences (e.g. \u9078\u629e) for Japanese characters (contained in a properties file) render as question marks when escape="false" in an outputText component. When escape="true" the

Re: folder.gif

2005-03-21 Thread Bryan Dickey
); this.treeModel = new DefaultTreeModel(root); } public String getIconUrl(Object arg0, int arg1, boolean arg2) { return "/images/tree/node.gif"; } public DefaultTreeModel getTreeModel() { return treeModel; } public void set

Re: folder.gif

2005-03-17 Thread Bryan Dickey
This should work (for the old tree table comp, which may be replaced soon - see archived "tree2" messages): *In JSP: *In backing bean: import org.apache.myfaces.custom.tree.IconProvider; public class TreeBean implements IconProvider { //interface IconProvider (path to node icon) p

Re: How to access selected/current row/node in Tree TABLE

2005-03-02 Thread Bryan Dickey
ly > > > > drop support for the old tree component in favor > > of > > > > a new one that has > > > > been developed. My advice to you is to check > > out > > > > the new tree2 in the

Re: How to access selected/current row/node in Tree TABLE

2005-02-24 Thread Bryan Dickey
is to check out > > the new tree2 in the > > CVS. Also, you can download a WAR file with a built > > in example if you > > search this list you will find Matthias' post of > > that. > > > > If you find that the new tree component cannot do > > som

Re: How to access selected/current row/node in Tree TABLE

2005-02-23 Thread Bryan Dickey
ed in my first email don't work... if anyone cares to comment. Thanks, Bryan >>> Bryan Dickey 02/23/05 01:10PM >>> How can I access the selected/current row/node in an action method using the Tree TABLE component?