Re: td align="center" howto setup it in datatable

2006-05-08 Thread Juergen Melzer
4:49:58 +0100 Hi, the property name should be 'text-align': .tableColumnCenter { text-align:center; } Regards, Bruno On 5/8/06, Juergen Melzer <[EMAIL PROTECTED]> wrote: I have the same problem Nicola Benaglia had in October 2005. He asked how the td attribute 'center'

td align="center" howto setup it in datatable

2006-05-08 Thread Juergen Melzer
I have the same problem Nicola Benaglia had in October 2005. He asked how the td attribute 'center' is generated when he use a datatable. I readed the anwser from Marius Kreis but it doesn't help. This is my output: my css: .tableColumnCenter { align:center; } I use InteliJ and it says that

Re: orange line onhover w/ panelTabbedPane in Firefox

2006-05-01 Thread Juergen Melzer
Hi all, I use --- .myFaces_panelTabbedPane_activeHeaderCell input:hover, .myFaces_panelTabbedPane_inactiveHeaderCell input:hover{ border-top: none; } ---

Client side toggle for CollapsiblePanel?

2006-04-19 Thread Juergen Melzer
Hi, is it planned to implement a client side toggle for the CollapsiblePanel? Thanks, Juergen _ Sie suchen E-Mails, Dokumente oder Fotos? Die neue MSN Suche Toolbar mit Windows-Desktopsuche liefert in sekundenschnelle Ergebnisse.

RE: Bad credentials

2006-03-03 Thread Juergen Melzer
8:28 +0100 Yes it is used in Alfresco that I am using... Best, Sophie -----Message d'origine- De : Juergen Melzer [mailto:[EMAIL PROTECTED] Envoyé : vendredi 3 mars 2006 14:21 À : [EMAIL PROTECTED]; users@myfaces.apache.org Objet : RE: Bad credentials Do you use spring & acegi? Seems

RE: Bad credentials

2006-03-03 Thread Juergen Melzer
Do you use spring & acegi? Seems to be a acegi error message. Regards, Juergen From: <[EMAIL PROTECTED]> Reply-To: <[EMAIL PROTECTED]> To: "'MyFaces Discussion'" Subject: Bad credentials Date: Fri, 3 Mar 2006 08:26:12 +0100 Hi! I guess it is not an error with MyFaces (maybe a problem with

Road map for 1.1.x

2006-01-25 Thread Juergen Melzer
Hi all, is there anyone who knows the road map for the next myFaces releases? Thanks, Juergen _ Sie suchen E-Mails, Dokumente oder Fotos? Die neue MSN Suche Toolbar mit Windows-Desktopsuche liefert in sekundenschnelle Ergebnisse.

Why is AddResource not usable outside myFaces?

2006-01-13 Thread Juergen Melzer
Hi, I want to use the mechanism like myFaces to load javascript resources. I use the class org.apache.myfaces.component.html.util.AddResource. But when I want to use it I found in 1.1.1: "For security reasons, only components member of the org.apache.myfaces.custom are allowed to add ressources"

RE: Modifying Components in Phaselistener

2006-01-05 Thread Juergen Melzer
. From: "Juergen Melzer" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: users@myfaces.apache.org Subject: Modifying Components in Phaselistener Date: Thu, 05 Jan 2006 09:09:54 +0100 Hi, I want to disable UIComponents when the user does not have the permission to write. So I

Modifying Components in Phaselistener

2006-01-05 Thread Juergen Melzer
Hi, I want to disable UIComponents when the user does not have the permission to write. So I want to do it in a PhaseListener. I walk through the ViewRoot-Children and set the Property to disable. But the Components are new created when the doStartTag is called and the properties are not set a

Re: Simplifying column expression

2005-12-08 Thread Juergen Melzer
27;t be trivial. You'll need to subclass > UIColumn to create MyColumn, and then either read the > tag in as a "header" facet, or have the > component create a header facet on its parent > UIColumn on creation. At least, that's my understanding of the > situat

Simplifying column expression

2005-12-06 Thread Juergen Melzer
Hi, I want to simplify the expression with this one: Does anyone know how to make it? Thanks, Juergen _ Die neue MSN Suche Toolbar mit Windows-Desktopsuche. Suchen Sie gleichzeitig im

Re: Development problems with JSF

2005-11-28 Thread Juergen Melzer
I found out that the StateManager caches the view so I have a workaround for you. Write a class like: public class NonCachedStatemanagerImpl extends JspStateManagerImpl { public UIViewRoot restoreView(FacesContext facescontext, String viewId, String renderKitId) { HttpServletRequest reques

For what is SelectItem.setDescription?

2005-11-28 Thread Juergen Melzer
Hi all, does anyone knows for what is the setDescription method in class selectItem or tag-class selectItem? regards, Juergen _ Die neue MSN Suche Toolbar mit Windows-Desktopsuche. Suchen Sie gleichzeitig im Web, Ihren E-Mails u

Re: Subview in tiles throws Exception (duplicate id)

2005-11-21 Thread Juergen Melzer
v 2005 21:52:46 -0900 >> >>I noticed this when I started using lots of subviews. It >>only went away after explictly giving everything an id. >> >> Original message >> >Date: Tue, 22 Nov 2005 07:49:36 +0100 >> >From: "Juergen Melzer"

Re: Subview in tiles throws Exception (duplicate id)

2005-11-21 Thread Juergen Melzer
bview in tiles throws Exception (duplicate id) Date: Mon, 21 Nov 2005 21:52:46 -0900 I noticed this when I started using lots of subviews. It only went away after explictly giving everything an id. Original message >Date: Tue, 22 Nov 2005 07:49:36 +0100 >From: "Juergen Melz

Subview in tiles throws Exception (duplicate id)

2005-11-21 Thread Juergen Melzer
Hi all, we use tiles and the myfaces integration. But we get an exception: javax.faces.FacesException: cannot add component with id '_id13' and path : {Component-Path : [Class: javax.faces.component.html.HtmlPanelGrid,Id: _id13]} to its parent component. This might be a problem due to duplicate

How to customize the Tobago-Toolbar?

2005-11-14 Thread Juergen Melzer
Hi, I want to remove the frame around the toolbar. Is this possible without writing my own renderer? Thanks, Juergen _ Sie suchen E-Mails, Dokumente oder Fotos? Die neue MSN Suche Toolbar mit Windows-Desktopsuche liefert in sekund

Re: Tomcat didn't load JSF-Page (Tobago-Problem?)

2005-11-14 Thread Juergen Melzer
renderKitId) { HttpServletRequest request = (HttpServletRequest) facescontext.getExternalContext().getRequest(); if (request.getParameterMap().size()==0) { return null; } return super.restoreView(facescontext,viewId,renderKitId); } Thanks for help, Juergen From: "Ju

Re: Tomcat didn't load JSF-Page (Tobago-Problem?)

2005-11-11 Thread Juergen Melzer
he Browser shows instead? Guessing from your last post: the correct page with broken layout? Regards, Volker Juergen Melzer wrote: > Hi Bernd, > > the problem is not a redeploy with maven. i use Intellij to make the > deploying. So I don't want to restart the servletcontext. But I

Re: Tomcat didn't load JSF-Page (Tobago-Problem?)

2005-11-11 Thread Juergen Melzer
Hi Bernd, the problem is not a redeploy with maven. i use Intellij to make the deploying. So I don't want to restart the servletcontext. But I think the problem are the caching mechanismen in tobago. I saw that you have at minimum two caches: one is the Resourcemanager the second is in ThemeCo