Re: [Trinidad] Understanding Trinidad Skinning?

2007-08-27 Thread Petr Kotek
Hello Andrew, I am using also debug-outputtrue/debug-output in trinidad-config.xml But I am not sure if this is responsible to decrypt css style names ... Regards, Peter Simon Lessard wrote: Hello Andrew, Disabling compression does just that... .af_inputText_content is very readable imho.

Re: Trinidad configuration in Jdeveloper

2007-08-12 Thread Petr Kotek
Hi, I have feeling, that I am there alone who use Trinidad in Oracle JDeveloper :-) I am using this libraries: commons-beanutils-1.6.jar commons-collections-2.0.jar commons-logging-1.0.jar jsf-facelets-1.1.6.jar trinidad-api-1.0.1-SNAPSHOOT.jar trinidad-impl-1.0.1-SNAPSHOOT.jar But I have

Re: Adding FacesMessage that can be available in view after handleNavigation

2007-07-19 Thread Petr Kotek
Hi, I resolve similar problem by next MessagesPhaseListener and saving message text into session bean: 1. Create class MessagesPhaseListener -- public class MessagesPhaseListener implements PhaseListener { public MessagesPhaseListener() { } public PhaseId

Re: [Trinidad] selectManyShuttle - not showing initially selected items

2007-07-05 Thread Petr Kotek
Hi Martin, Your groupController.groupItems must return array of any objects (for example Object[]) but groupController.groupSelectItems must return array of javax.faces.model.SelectItem (SelectItem[]). Create SelectItem item as new SelectItem(object, label) where object must be reference (not

Re: [Trinidad] skin-selectors

2007-06-28 Thread Petr Kotek
_ -- Matthias Wessendorf further stuff: blog: http://matthiaswessendorf.wordpress.com/ mail: matzew-at-apache-dot-org P Please consider the environment before printing this email -- Petr Kotek CRC Data spol. s r.o. U krčské vodárny 26 - vývojové pracoviště 140 00 Praha 4 tel: +420 241 442

Re: Skinning tr:inputText

2007-06-14 Thread Petr Kotek
place. Peter Francisco Passos wrote: Since I wanted my inputTexts to be - by default - not bold, and then some of them I wanted bold, I ended up using inlineStyle to set font-weight: bold; ... On 6/13/07, * Petr Kotek* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hello, You

Re: Skinning tr:inputText

2007-06-13 Thread Petr Kotek
way to reference ::label from within the inlineStyle property and define this property on the spot? -- Petr Kotek CRC Data spol. s r.o. U krčské vodárny 26 - vývojové pracoviště 140 00 Praha 4 tel: +420 241 442 464 fax: +420 241 442 645 GSM: +420 602

Re: [Trinidad] Problems with skinning tables

2007-06-11 Thread Petr Kotek
/trinidad-config Best regards, -- Stéphane Molina -- Petr Kotek CRC Data spol. s r.o. U krčské vodárny 26 - vývojové pracoviště 140 00 Praha 4 tel: +420 241 442 464 fax: +420 241 442 645 GSM: +420 602 339 057 www.crcdata.cz

Re: how to create dynamic grahpics with JFreeChart and myfaces?

2007-06-06 Thread Petr Kotek
kostenguenstig. Jetzt gleich testen! http://f.web.de/?mc=021192 -- Petr Kotek CRC Data spol. s r.o. U krčské vodárny 26 - vývojové pracoviště 140 00 Praha 4 tel: +420 241 442 464 fax: +420 241 442 645 GSM: +420 602 339 057 www.crcdata.cz

[Trinidad] Note to tr:input... generated HTML

2007-05-31 Thread Petr Kotek
Hi, I have a little note to HTML code, generated by tr:input components in label area. This code has changed in some latest release (I think) and now look as: tr class=AFFieldNumberMarker af_inputText td class=af_inputText_label af_panelFormLayout_label-cell nowrap=nowrap !--Start:

Re: [Trinidad] Note to tr:input... generated HTML

2007-05-31 Thread Petr Kotek
On 5/31/07, Petr Kotek [EMAIL PROTECTED] wrote: Hi, I have a little note to HTML code, generated by tr:input components in label area. This code has changed in some latest release (I think) and now look as: tr class=AFFieldNumberMarker af_inputText td class=af_inputText_label

[Trinidad] Tag library in JDeveloper loading problem

2007-05-30 Thread Petr Kotek
Hello all, I have a still problem with Trinidad Tag library loading on second run of JDeveloper. When tag library is created in Manage Library dialog, then all is OK. After close and open JDeveloper there are errors on JSP pages with Trinidad components. I must recreate tag library definition

Re: Problem with Trinidad skinning

2007-05-25 Thread Petr Kotek
Hi, I look on Your config and it seams OK - I have the same. Only background-color number must be in hex - #99 and there are unnecessary spaces in http://myfaces.apache.org/trinidad/config http://myfaces.apache.org/trinidad/config. Check character upper/lower case in directory paths,

Re: Problem with Trinidad skinning

2007-05-25 Thread Petr Kotek
-impl.jar ? On 5/25/07, *Petr Kotek* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi, I look on Your config and it seams OK - I have the same. Only background-color number must be in hex - #99 and there are unnecessary spaces in http://myfaces.apache.org/trinidad/config

Re: [Trinidad] Skinning tr:table

2007-05-22 Thread Petr Kotek
Hi, I think, that this is not so easy. You must use tr:column and tr:table selectors for various parts of table. For example, for double pixel border under header row, I set styles: af|column::header-text, af|column::header-number, af|column::header-icon-format { border-bottom-width: 2px

Re: [Trinidad] Button Skinning

2007-05-21 Thread Petr Kotek
icons are not allowed.) --- I understand Your reply, that Trinidad don't support this feature? Thanks, Peter Adam Winer wrote: Trinidad doesn't use server-side rendered buttons; this seems like a question about Oracle ADF Faces. -- Adam On 5/21/07, Petr Kotek

Re: MyFaces and Security

2007-05-15 Thread Petr Kotek
Hi Rudi, I am only begginer in JSF and I don't now if exisist better way to handle login but next code may help You. PhaseListener --- public class LoginPhaseListener implements PhaseListener { private final String LOGIN_SOURCE = loginButton; private