[Trinidad] JIRA Issue 354: autoSubmit on text field suppresses ActionEvent on a button

2012-02-08 Thread Döring Markus
Hi List, I've come across this issue: https://issues.apache.org/jira/browse/TRINIDAD-354 and have to say (as others already posted in jira comments) that the issue is still not fixed in latest release. Additionally it not only occurs on text field but also on select many listbox, select many

[Trinidad] Problems with PPR and custom converters

2010-05-18 Thread Döring Markus
Hi, i have a web application running in the following environment: JBoss 4.2.2 myfaces 1.1.5 jsf-facelets 1.1.13 trinidad 1.0.11 I have 2 different enum types: Enum1 {A, B} Enum2 {A1, A2, A3, B1, B2} And I have 2

NullPointer in FileSystemStyleCache

2010-05-10 Thread Döring Markus
Hi all, we have an productive Trinidad web application running with: JBoss 4.2.2 myfaces 1.1.5 trinidad 1.0.11 jsf-facelets 1.1.13 Since this weekend we have a lot of requests that cause a NullPointer in the FileSystemStyleCache. The application was running fine before for month. The request

AW: [TRINIDAD]Suppressing Validation during PartialPageRequest

2009-12-09 Thread Döring Markus
Hello, should work if you put the drop-down in an own subform. e.g. tr:form tr:subForm !-- Navigation Items here -- !-- Required form fields here -- /tr:subForm tr:subForm tr:selectOneChoice / /tr:subForm /tr:form

[Trinidad] ValueChangeListener issues

2009-11-26 Thread Döring Markus
Hi list, I have found an issue with multiple value change events in one request. I have a simple test setup: One page with just a form, an InputText and an SelectBooleanCheckbox (see file attached). Both inputs save their value in a HashMap in session (could also be a managed bean but so

AW: [Trinidad] ValueChangeListener issues

2009-11-26 Thread Döring Markus
Betreff: Re: [Trinidad] ValueChangeListener issues Hi Markus, It would be great to know in which browsers you tested this, because it looks like a javascript error to me. Regards Jakob Korherr 2009/11/26 Döring Markus markus.doer...@tcc-products.de Hi list, I have found an issue

AW: [Trinidad]How to do dynamic form validation?

2009-04-27 Thread Döring Markus
Hi, I didn't tested it, but maybe something like this works for you: tr:inputText label=textfield1 value=#{value1} required=#{value2 != null} tr:inputText label=textfield2 value=#{value2} required=#{value1 != null} Maybe you have to replace valueX != null with some kind of

[Trinidad] Saving an inputColor to an EJB backing bean

2009-04-22 Thread Döring Markus
Hi all, my goal is to have an EJB backing bean like the following: @Entity public class EntityBean { //... id stuff and else properties private String color; public String getColor() { return color;

AW: [Trinidad] Saving an inputColor to an EJB backing bean

2009-04-22 Thread Döring Markus
: Mittwoch, 22. April 2009 09:44 An: MyFaces Discussion Betreff: Re: [Trinidad] Saving an inputColor to an EJB backing bean On Wed, Apr 22, 2009 at 9:36 AM, Döring Markus markus.doer...@tcc-products.de wrote: Hi all, my goal is to have an EJB backing bean like the following: @Entity public class

AW: [Trinidad] - Can Trinidad run in WAS 6.1?

2009-03-24 Thread Döring Markus
Hi, i have a Trinidad App running in WAS 6.1 without any problems. But I have to mention that this app is running in Java 1.4.2 (with Retroweaver: http://wiki.apache.org/myfaces/Trinidad_and_JDK_1.4) and I don't know how ggod it works on Java 1.5, but I there should be no big issues.

[Trinidad] SkinSelector .AFDisabledLinkForeground:alias not working?

2009-03-23 Thread Döring Markus
Hi list, I'm working with: JBoss 4.2.2 GA MyFaces 1.1.5 Trinidad 1.0.7 Looking at the SkinSelector page if found the following selectors for links: .AFLinkForeground:alias .AFActiveLinkForeground:alias .AFVisitedLinkForeground:alias .AFDisabledLinkForeground:alias The first 3

AW: [Trinidad] Generate PDF _and_ close dialog

2008-12-09 Thread Döring Markus
You can not do this in one request because you can have either HTML (or XHTTP) content OR PDF content in one response. One solution to workaround this is to fire the action, close the dialog and add an JS that submits a (hidden) button to download the PDF _after_ the dialog has been closed.

AW: [Trinidad] Dialogs - turn off the PPR?

2008-12-08 Thread Döring Markus
? Hi Markus, can you file an enhancement request, so that we don't forget it ? -Matthias On Fri, Dec 5, 2008 at 9:13 AM, Döring Markus [EMAIL PROTECTED] wrote: Hi, not the best solution but I used it in one of my projects: Use this code in your returnListener: FacesContext context

AW: [Trinidad] Dialogs - turn off the PPR?

2008-12-05 Thread Döring Markus
Hi, not the best solution but I used it in one of my projects: Use this code in your returnListener: FacesContext context = Context.facesContext(); if(context != null) { boolean isPPR = Context.requestContext().isPartialRequest(context); if (isPPR) { UIViewRoot

AW: [Trinidad] selectOrderShuttle-How: Determine inactive vs. active list at server?

2008-10-24 Thread Döring Markus
You have two lists: one containing all elements (the List of the selectItems, I always use f:selectItems value=#{someHashMap} / so the list of select items is someHashMap.values) one containing all selected elements (tr:selectOrderShuttle value=#{someArray} ) You can now check all items from

AW: [Trinidad] Scrolling table with partial row fetching?

2008-07-30 Thread Döring Markus
Hello, it's not a scrolling in the common sence, but tr:table supports pagination. Look at http://myfaces.apache.org/trinidad/trinidad-api/tagdoc/tr_table.html - Range Navigation you have to implement your own tableModel to get the lazy loading stuff to work, but it's not a big deal. To see

[Trinidad] DEPRECATED_TRIGGER_SYNTAX

2008-07-29 Thread Döring Markus
Hi List, since an upgrade of trinidad (I think from 1.0.3 to 1.0.7, might be an earlier update and I didn't saw the log) I get the following log warning: 10:04:29,671 WARN [RequestContextImpl] DEPRECATED_TRIGGER_SYNTAX My xhtml code ist he following: Outer xhtml: ui:composition

AW: [Trinidad] DEPRECATED_TRIGGER_SYNTAX

2008-07-29 Thread Döring Markus
at 10:18 AM, Döring Markus [EMAIL PROTECTED] wrote: Hi List, since an upgrade of trinidad (I think from 1.0.3 to 1.0.7, might be an earlier update and I didn't saw the log) I get the following log warning: 10:04:29,671 WARN [RequestContextImpl] DEPRECATED_TRIGGER_SYNTAX My xhtml code ist

[Trinidad] Nullpointer from Google Bot

2008-07-08 Thread Döring Markus
Hi List, since our application went live, we get some nullpointer during night. Some research has shown that the IP that is accessing the site is known as some Google Bot scanning links, ect. Don't know why the nullpointer happens, looks like the Google Bot sends some strange MacOS header

AW: [Trinidad] Nullpointer from Google Bot

2008-07-08 Thread Döring Markus
schrieb Döring Markus: Hi List, since our application went live, we get some nullpointer during night. Some research has shown that the IP that is accessing the site is known as some Google Bot scanning links, ect. Don't know why the nullpointer happens, looks like the Google Bot sends

AW: [Trinidad] Nullpointer from Google Bot

2008-07-08 Thread Döring Markus
). https://issues.apache.org/jira/browse/TRINIDAD-1109 -M On Tue, Jul 8, 2008 at 9:52 AM, Döring Markus [EMAIL PROTECTED] wrote: The exception filter is doing nothing more than catching every exception and redirecting to another view. And the exception filter is just at one point in the stack

AW: [Trinidad] Nullpointer from Google Bot

2008-07-08 Thread Döring Markus
issue. Can you enter your problem to jira and link to this? I am not 100% sure but it might be a similar issue (yes, I know the stack is different). https://issues.apache.org/jira/browse/TRINIDAD-1109 -M On Tue, Jul 8, 2008 at 9:52 AM, Döring Markus [EMAIL PROTECTED] wrote: The exception

AW: [Trinidad] Nullpointer from Google Bot

2008-07-08 Thread Döring Markus
] Nullpointer from Google Bot On Tue, Jul 8, 2008 at 6:28 PM, Döring Markus [EMAIL PROTECTED] wrote: Should work if the Agent is not null. right. would be good to know what the bot actually submits. -M -Ursprüngliche Nachricht- Von: Andrew Robinson [mailto:[EMAIL PROTECTED] Gesendet: Dienstag

AW: Resend: [Trinidad] Trinidad Release 1.0.8 Skin Rendering Problem

2008-06-30 Thread Döring Markus
Hi, I have this same issue since a long time (before Trinidad 1.0 release) and have it currently with 1.0.7. Was not a big issue for me so I never spend much time on it. Markus -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Matthias

AW: [trinidad] tr:iterator

2008-06-17 Thread Döring Markus
If i remember correctly, tr:forEach is only available in a non facelets WebApp. If you are using facelets you should use c:forEach. -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Matthias Wessendorf Gesendet: Montag, 16. Juni 2008 23:11 An:

[Trinidad] Trinidad and ICEFaces

2008-05-16 Thread Döring Markus
Hi all, i'm currently searching for a JSF component for a RichText editor. This means the user can edit fontsize / fontcolor / etc. in an TextArea and the String saved on the server should represent the formatting somehow (preferred as html). I found a component that meets exactly these

AW: AW: AW: [TRINIDAD] How to display Page loading... while page is loading?

2008-05-15 Thread Döring Markus
Maybe tr:form onsubmit=document.getElementById('busyIconIndicator').style.display='inline' ... /tr:form works? -Ursprüngliche Nachricht- Von: Daniel Niklas [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 15. Mai 2008 12:33 An: users@myfaces.apache.org Betreff: Re: AW: AW:

AW: [TRINIDAD] How to display Page loading... while page is loading?

2008-05-14 Thread Döring Markus
Hi Paul, if the action uses trindad PPR, tr:statusIndicator is what you're looking for. You just need to include it somewhere on the page, and always when PPR is doing something, a loading icon is displayed. You can change the icon via trinidad skinning. If no PPR is involved, it gets a bit

AW: AW: [TRINIDAD] How to display Page loading... while page is loading?

2008-05-14 Thread Döring Markus
I was thinking of something like this: tr:document tr:image id=busyIconIndicator source=/busy/image/url.gif inlineStyle=display:none / tr:commandButton text=push onclick=document.getElementById('busyIconIndicator').style.display='inline' f:actionListener ... /

[Trinidad] Connection failed during PPR

2008-05-08 Thread Döring Markus
Hi List, I have a page that uses a tr:poll to update a tr:table via PPR every 5 seconds. This works fine so far. The page is used in an environment where the i-net connection might be a bit unstable (e.g. PC only connected via UMTS with bad network coverage). So it might happen that some

AW: [Trinidad] ConcurrentModification

2008-05-07 Thread Döring Markus
are using the same component tree, which is bad, I dont think that should be happening. I always turn off Trinidad's view root caching. It is nice for perf. but can be really bad for bugs. On Tue, May 6, 2008 at 1:28 AM, Döring Markus [EMAIL PROTECTED] wrote: Hi List, I have a page

[Trinidad] ConcurrentModification

2008-05-06 Thread Döring Markus
Hi List, I have a page that shows a tr:table. This table refreshs with a tr:poll tr:poll id=tablePoll interval=5000 / tr:table rows=20 value=#{tableController.scores} var=data id=scoreTable partialTriggers=tablePoll ... some columns and stuff /tr:table So far everything

AW: [Trinidad] skining showDetails component

2008-04-18 Thread Döring Markus
firebug to see if your css properties are not overriden by the default OraLink class af|showDetail::prompt-disclosed .OraLink:link { color:#FF !important; background-color:#FF !important; } On 4/11/08, Döring Markus [EMAIL PROTECTED] wrote: Hi, thanks for help so far

AW: [Trinidad] skining showDetails component

2008-04-11 Thread Döring Markus
put in the selector do so also for :active, :hover, ... if you need it regards, On Thu, Apr 10, 2008 at 4:35 PM, Döring Markus [EMAIL PROTECTED] wrote: Hi all, I'm trying to skin the link of the showDetails component (change the color of the link and the font size) I've managed to change

AW: [Trinidad] skinning all input components

2008-04-11 Thread Döring Markus
input components Hi Markus, Did you check the aliases to see if any of them could help? http://myfaces.apache.org/trinidad/devguide/skinning.html#Alias_skinning_keys http://myfaces.apache.org/trinidad/skin-selectors.html Thanks, Yee-Wah Döring Markus wrote: Hi all, I'm currently skinning

[Trinidad] skining showDetails component

2008-04-10 Thread Döring Markus
Hi all, I'm trying to skin the link of the showDetails component (change the color of the link and the font size) I've managed to change the color by skinning .AFLinkForeground:alias but I don't want to change every link. af|showDetail:: prompt-link is not working for me at all. Can someone

[Trinidad] skinning all input components

2008-04-09 Thread Döring Markus
Hi all, I'm currently skinning some input components to have some nice style. I've completed it for the tr:inputText, but I don't want to copy-past the style to every input component (like selectOneChoice, selectManyChoice, ect. ect.) Is there an easy way (global skin selector) to skin the

[Trinidad] selectOneChoice item coloring

2008-04-03 Thread Döring Markus
Hi List, Is it possible to highlight some items in a selectOneChoice dropdown, i.e. display them in another color? Like: Item 1 (white bg) Item 2 (red BG, need editing) Item 3 (white bg) ... Don't know if it's even possible with HTML and CSS, didn't found anything like this. Thanks

AW: [Trinidad] How to use ServerSide ImageMaps

2008-01-30 Thread Döring Markus
= document.getElementById(imageMapSubmit); commaloc = str.indexOf(,); inputX.value = str.substring(1, commaloc); inputY.value = str.substring(commaloc+1, str.length); submit.click(); } /script /ui:composition Von: Döring Markus [mailto:[EMAIL

AW: [Trinidad] How to use ServerSide ImageMaps

2008-01-25 Thread Döring Markus
to it (this works so far) Now how do I get this cords back inside the JSF lifecycle? Or is there any possibility to get it directly into an actionListener? Thanks for help Von: Döring Markus [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 25. Januar 2008 16:50 An: MyFaces Discussion Betreff

[Trinidad] How to use ServerSide ImageMaps

2008-01-25 Thread Döring Markus
Hello, I'm trying around with tr:image and server side ImageMaps. tr:image documentation says: If a server-side image map is desired, specify server and place inside a CoreGoLink component. The acceptable values are server or none; defaults to none. What I have so far is the following

AW: [Trinidad] Pagination in a tr:table?

2008-01-17 Thread Döring Markus
I have a solution with my own implementation for Trinidad CollectionModel with public boolean isRowAvailable() { if (currentRowIndex getRowCount()) { return false; } return true; } and public int getRowCount() {

AW: Antwort: [Trinidad] Panel Popup not working correctly in tr:table?

2007-12-06 Thread Döring Markus
Hi, thanks, missed that. Can't find any documentation to the Trinidad Dialogue, can someone give me a hint where to find something about it? Greetings Markus Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 6. Dezember 2007 12:16 An: MyFaces Discussion Betreff:

AW: Antwort: AW: Antwort: [Trinidad] Panel Popup not working correctly in tr:table?

2007-12-06 Thread Döring Markus
2007 15:14 An: MyFaces Discussion Betreff: Antwort: AW: Antwort: [Trinidad] Panel Popup not working correctly in tr:table? http://myfaces.apache.org/trinidad/devguide/dialogs.html Best, Wolfgang. Döring Markus [EMAIL PROTECTED] 06.12.2007 15:10 Bitte antworten an MyFaces

AW: [Trinidad] Use Dojo with Trinidad

2007-11-27 Thread Döring Markus
Hi, I've not tested it, but i also used own JS files in my Trinidad application and it should work exactly the same way as in plain HTML. Also you can try to have an importDojo.js file where you do the import stuff, and import this file with trh:script source=/importDojo.js / Greetings Markus

RE: [Trinidad] Logging

2007-08-14 Thread Döring Markus
Hello, i've implemented a wrapper to send all Java Logging Messages to commons logging because we allready used commons logging in our project and didn't wanted to use multiple loggers. I've created a wiki page here: http://wiki.apache.org/myfaces/Trinidad_and_Common_Logging Markus

[TRINIDAD] configure display all on tr:table

2007-08-02 Thread Döring Markus
Hello, The range navigator of a tr:table has an item display all. I've already seen that this option is hidden if there are a lot of rows in the table (maybe over 500 or so). Is there an easy way to configure when the option is displayed and when not (i want to hide the option as soon as more

AW: [Trinidad] Skin-Bug on AIX

2007-07-23 Thread Döring Markus
I see. So, you don't get warnings/errors/exceptions ? Anything noticed, during debugging Trinidad ? -M On 6/29/07, Döring Markus [EMAIL PROTECTED] wrote: Yes, retroweaved version works fine on windows + WebSphere and also on windows + JBoss, only AIX + WebSphere makes problems

AW: [Trinidad] Skin-Bug on AIX

2007-07-02 Thread Döring Markus
bar? -- Abhi On 6/29/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: So, the retroweaved version on windoze and WebSphere, running on Java1.4, works fine ? Any chance to *test* on AIX w/ WebSphere and Java5 ? Just to test the skins? Just curious. -M On 6/29/07, Döring Markus [EMAIL

AW: [Trinidad] Skin-Bug on AIX

2007-06-29 Thread Döring Markus
application we use a retroweaved trinidad version. Markus Döring -Ursprüngliche Nachricht- Von: Döring Markus [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 27. Juni 2007 09:39 An: MyFaces Discussion Betreff: AW: [Trinidad] Skin-Bug on AIX Hello, Thanks for the quick reply. I

AW: [Trinidad] Skin-Bug on AIX

2007-06-29 Thread Döring Markus
version on windoze and WebSphere, running on Java1.4, works fine ? Any chance to *test* on AIX w/ WebSphere and Java5 ? Just to test the skins? Just curious. -M On 6/29/07, Döring Markus [EMAIL PROTECTED] wrote: Hello, the folder \adf\styles\cache exists on the AIX machine

[Trinidad] Skin-Bug on AIX

2007-06-27 Thread Döring Markus
Hello, We currently developed a wizard application with MyFaces 1.1.5, Facelets 1.1.11 and Trinidad 1.0.0-incubating. For development we use JBoss on Windows XP Machines, for testing we use WebSphere on Windows and WebSphere on AIX. On JBoss and WebShere on Windows everything works fine. Only

AW: [Trinidad] Skin-Bug on AIX

2007-06-27 Thread Döring Markus
as well ? -Matthias On 6/27/07, Döring Markus [EMAIL PROTECTED] wrote: Hello, We currently developed a wizard application with MyFaces 1.1.5, Facelets 1.1.11 and Trinidad 1.0.0-incubating. For development we use JBoss on Windows XP Machines, for testing we use

AW: [Trinidad] skinning input components

2007-05-08 Thread Döring Markus
, Döring Markus [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hello, I'm using multiple tr:selectOneChoice and tr:inputText components on one page. Only some of them should have an other background color. If I put the inlineStyle=background-color:#00; attribute on the component, the style

[Trinidad] skinning input components

2007-05-07 Thread Döring Markus
Hello, I'm using multiple tr:selectOneChoice and tr:inputText components on one page. Only some of them should have an other background color. If I put the inlineStyle=background-color:#00; attribute on the component, the style get's rendered on an span tag surrounding the select. Is

AW: [Trinidad] tr:forEach

2007-05-04 Thread Döring Markus
Are you using facelets? If yes, tr:forEach is not supported with facelets. Try using one of ui:repeat (facelets) or c:forEach (belongs to JSTL) Von: Francisco Passos [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 4. Mai 2007 13:51 An: users@myfaces.apache.org

AW: Trinidad menutab

2006-12-11 Thread Döring Markus
Hello, Trinidad has this features in the tr:naviagtionPane You can simply add tr:commandNavigationItem and set the hint attribute on the navigationPage to tabs For more informations look here: http://incubator.apache.org/adffaces/trinidad-api/tagdoc/tr_navigationPane.html Also there is a

AW: VERY VERY VERY VERY strange behavior!!!

2006-09-29 Thread Döring Markus
I had a similar problem. I had the managedBean in requestScope and when the button is pressed the request ends so the managedBean is not anymore in scope. In the restoreView phase the id is null so the rendered is false and the action wont be fired. Solved this by putting the managedBean

Setting propertys of managed beans in jsf

2006-09-21 Thread Döring Markus
Hello, I want to set a property of a managed bean out of a JSP Page. What I've done so far is the following: jsp:useBean scope=request class=DataControler id=dataControler jsp:setProperty name=dataControler property=dataName value=User / jsp:setProperty

AW: verbatim bug?

2006-09-15 Thread Döring Markus
Looks like you have h:outputText within the verbatim. Try something like h:form h:dataTable var=slot value=#{indexBean.slots} f:facet name=header f:verbatim div style=height: 50px; background-color: tan; font-size: 16px;

AW: Problem with jsp:include/

2006-09-11 Thread Döring Markus
Hi, i have the identical problem. I have found out that it has something to do that not all components are completely re-rendered. For now I solved it that way: An actionListener that listen on the commandButton and sets the managedBeanProperty on the next page that should be