Re: Tomahawk's saveState with Trinidad

2007-04-23 Thread Simon Lessard
Hello Franscisco, You got a good catch there, but we cannot add that in either Trinidad core logic nor in Tomahawk's because it would create a dependency link between both libraries. However, I think it worth a wiki entry though, maybe about known issues between Trinidad and Tomahawk. Regards,

Re: how do I refresh a table component after selecting and deleting one or more rows ?

2007-04-20 Thread Simon Lessard
Hello, Even if the row is deleted in the database, maybe it still exists in the DataModel, can you provide a small code snip of your bean please? Also, are you using PPR or is it a full submit delete? Regards, ~ Simon On 4/20/07, Edmond B. Mulemangabo [EMAIL PROTECTED] wrote: Ritchie

Re: how do I refresh a table component after selecting and deleting one or more rows ?

2007-04-20 Thread Simon Lessard
Ok so this is a PPR delete then, I assume you placed the delete button on each row of the table? If so then you have to add a partial target on the table to the button. On 4/20/07, Edmond B. Mulemangabo [EMAIL PROTECTED] wrote: Mike Kienenberger wrote: When you delete the row, you would also

Re: Installing Maven Trinidad Archetype

2007-04-14 Thread Simon Lessard
Hello, mvn install in the plugins directory to build it. However, I don't see why this is needed, if this is really the issue since he built plugin can be found in maven repos. On 4/14/07, Andy Birchall [EMAIL PROTECTED] wrote: Ah, I wasn't aware that I had to do that. I thought that these

Re: Skinning Tags

2007-04-03 Thread Simon Lessard
you want to extend.. I'll add a demo if there isn't one already. Thanks, Jeanne Simon Lessard wrote: Hello Gary We plan to add inheritance from any skin, not just from simple in the future, so you'll be able to override just what you want. Regards, ~ Simon On 3/30/07, Matt Cooper [EMAIL

Re: Skinning Tags

2007-03-30 Thread Simon Lessard
There's two places: For the full list, if you downloaded the source files, in /trinidad/src/site/xdoc/skin-selectors.xml For the old list (from ADF Faces): http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/skin-selectors.html Regards, ~ Simon On 3/30/07,

Re: Skinning Tags

2007-03-30 Thread Simon Lessard
(speaking from the ADF 10.1.3.2side) and only an option for the simple skin. I'd like to be able to pick an existing skin but only override a couple of things. This would be very handy for the CSS challenged. Is this possible in Trinidad? Gary Simon Lessard wrote: There's two places

Re: Debuging CSS

2007-03-29 Thread Simon Lessard
Hello Chris, Try to set the org.apache.myfaces.trinidadinternal.DISABLE_CONTENT_COMPRESSION context parameter to true while you're debugging CSS. This will generate only the full version of the selectors, Here's the full doc: /** * Disables optimizations that are normally performed by the

Re: IDE support for Trinidad Facelets

2007-03-23 Thread Simon Lessard
Hello, As mentioned on MyEclipse forums, Facelets support will be added with next major release: From : http://www.myeclipseide.com/index.php?name=PNphpBB2file=viewtopict=9797postdays=0postorder=ascstart=135 Guys it has been confirmed by management that we will be improving the JSF tooling

Re: Trinidad ADF with JDK 1.6

2007-03-20 Thread Simon Lessard
Hello all, I can use Trinidad with Java 6 without any issue here and was able to do so for the past 8 months, so I doubt it's a Trinidad issue. Regards, ~ Simon On 3/20/07, Himanshu Purandare [EMAIL PROTECTED] wrote: Yes, I do. We have pages that have Trinidad as well as Tomahawk

Re: Skinning / Detecting Style-Sheet-Changes

2007-03-19 Thread Simon Lessard
Hello Felix, I don't think we support that feature yet. Personally I have to do the same as you when working on a skin. Regards, ~ Simon On 3/19/07, Felix Gonschorek [EMAIL PROTECTED] wrote: Hello all, i am trying to implement my own style for trinidad components. but for every change i

Re: Trinidad table - remove a row

2007-02-13 Thread Simon Lessard
Oh, sorry, but it's still possible!!! With a bit more work though. In the page: tr:table binding=#{myBean.table} ... ... /tr:table In the bean: private UIComponent table; public UIComponent getTable() { return table; } public void setTable(UIComponent table) { this.table = table; }

Re: RE : AW: templating mecanism ?

2007-02-01 Thread Simon Lessard
Hello, Unless you use JSF 1.2, most pure JSP templating framework might fail under some circumstances. You could checkout Tiles and try to have it work with Trinidad, but you should really go with Facelet instead. If your IDE whine because it cannot find Facelet's TLD, then do a Google search

Re: Table refresh problem when using dialog

2007-01-11 Thread Simon Lessard
Hello, Thanks for confirming that I messed up when I tried it, I'll retry it where I used the manual call. :) On 1/10/07, magdolna holitska [EMAIL PROTECTED] wrote: Hello, I tried both Venkata's and Simon's solutions and they both worked. Thank you all for your help! Regards, Magdolna

Re: Partial Page Rendering in tr:table

2007-01-11 Thread Simon Lessard
Hello, Hmm that page is ambiguous, but it really means exactly the opposite of what you read! The No-code part here mean that you don't have to code anything, it,s all built in. Regards, ~ Simon On 1/10/07, Anshuman Abhishek Roy [EMAIL PROTECTED] wrote: Hi, I had earlier tried to use

Re: Table refresh problem when using dialog

2007-01-09 Thread Simon Lessard
Hello Magdolna, I don't think the naming container trick will work as I already tried it in the past. Then again I might have messed up while trying. I was able to achieve refresh with a manual call to TrinidadContext.addPartialTarget(tableComponent). It's really a poor man solution, but it

Re: Problem using tr:train with Facelets 1.1.11

2006-12-19 Thread Simon Lessard
Yeah, I'll add some logging message to fix that. On 12/19/06, Adam Winer [EMAIL PROTECTED] wrote: Graeme, It's not a Facelets problem - the issue is that your train in the second example isn't inside of a form. So, easy to fix. But the train is being very bad here - it should be logging a

Re: Skinning the Details Stamp and the Disclosed Symbol

2006-11-23 Thread Simon Lessard
Hello mark, Why don't you make your own skin and override those selectors? It's hard coded only for the simple skin. ~ Simon On 11/22/06, Mark Robinson [EMAIL PROTECTED] wrote: Hi, I'm trying to change the symbol used on the disclosure icons(it's a unicode arrow right now). It's hard

Re: Customizing the asterisk on required fields

2006-11-21 Thread Simon Lessard
Hello, The color and icon are customizable in the skin using the selectors: .AFRequiredIconStyle // for color .AFRequiredIcon:alias // to change the icon However I don't think the position can be controlled. Regards, ~ Simon On 11/21/06, Daniel Hannum [EMAIL PROTECTED] wrote: Hi, sorry

Re: inputText required and navigation

2006-11-16 Thread Simon Lessard
Hello, The current page should not be reloaded if the commandNavigationItem is immediate. Can you post a code snippet of your page please? Did you make the inputText immediate as well, if so that's the problem, it should not be? Regards, ~ Simon On 11/15/06, d sanders [EMAIL PROTECTED]

Re: Custom Converter not getting called

2006-11-10 Thread Simon Lessard
I think that's might be your issue. Did yo utest with a non-null value to see if the converter get called? I'll check the spec but I think null never get converted nor validated except for required=true fields. On 11/10/06, David Brunette [EMAIL PROTECTED] wrote: Great, thanks for

Re: Custom Converter not getting called

2006-11-10 Thread Simon Lessard
on the value being null or not-null. This works, but it does not seem very clean to me. Dave -Original Message- From: Simon Lessard [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 12:07 PM To: adffaces-user@incubator.apache.org Subject: Re: Custom Converter not getting called I think

Re: Custom Converter not getting called

2006-11-10 Thread Simon Lessard
was hoping to catch both empty String and null. And since a null value calls my converter when using h:inputText /, I was hoping it would do the same for the Trinidad inputText component. Dave -Original Message- From: Simon Lessard [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 12:43

Re: Custom Converter not getting called

2006-11-10 Thread Simon Lessard
Awww, my memory is failing me, the issue I was talking about was http://issues.apache.org/jira/browse/ADFFACES-38. I would be all for giving Converters a chance to do formatting even on null values though, especially if the spec does not forbid it. Regards, ~ Simon On 11/10/06, Simon Lessard

Re: af:table select one auto submit

2006-11-08 Thread Simon Lessard
Hello, Try using a selectionListener instead. Regards, ~ Simon On 11/8/06, Troy Bull [EMAIL PROTECTED] wrote: Greetings I am trying to make my table (select 1) auto submit once the user picks a radio button. I set AutoSubmit to true on the tableSelectOne facet and I created an

Re: af|panelBox ignores background color override

2006-10-30 Thread Simon Lessard
in order to prevent such issue from happening again. ~ Simon On 10/30/06, Simon Lessard [EMAIL PROTECTED] wrote: Hmmm, try the following, it works fine for me: af|panelBox::medium af|panelBox::body { background-color: black; } However what you did should have worked as well. I'll try

Re: Can we use bean to specify id attribute value

2006-10-30 Thread Simon Lessard
Yeah, hard coded is the way to go. On 10/30/06, Olivier Lafontaine [EMAIL PROTECTED] wrote: EL expressions are usually not supported for the id attribute. At least, the JSF specification states that it is not supported for the standard component classes, see section 3.1.4 of the spec. So

Re: Component to show a floating DIV?

2006-10-25 Thread Simon Lessard
I kind of like the idea, it would help going around the popup blocker issues. That being said, there's some design issue to talk about. First, how will that pseudo dialog will be populated? Do we want to harmonize it with our current dialog framework or not? If not then we could simply place the

Re: Customizing required validator

2006-10-24 Thread Simon Lessard
Close enough Olivier, but it's the opposite client-validation-disabledtrue/client-validation-disabled. The option is a disabled condition... That always looked quite counter-intuitive to me, I would rather see client-validation-enabled. Regards, ~ Simon On 10/24/06, Olivier Lafontaine [EMAIL

Re: Customizing required validator

2006-10-24 Thread Simon Lessard
Actually even better would be : enable-client-validationtrue/enable-client-validation On 10/24/06, Matthias Wessendorf [EMAIL PROTECTED] wrote: Yeah, I agree, same true for compressen-disabled :) On 10/24/06, Simon Lessard [EMAIL PROTECTED] wrote: Close enough Olivier, but it's the opposite

Re: Errors Building with Maven

2006-10-23 Thread Simon Lessard
Hello Tim, Have you tried running it more than once? Sometimes Maven repositories are flooded. It seems that it was not able to find Shale files in your case. Regards, ~ Simon On 10/22/06, Romanowski, Tim [EMAIL PROTECTED] wrote: Yesterday I installed Maven 2.0.4, the Tortoise Subversion

Re: Using Skinning facility for custom components

2006-10-12 Thread Simon Lessard
Hello Frank, I think we already have a JIRA issue (ADFFACES-54https://issues.apache.org/jira/browse/ADFFACES-54) for configurable inheritance. Regards, ~ Simon On 10/12/06, Frank Nimphius [EMAIL PROTECTED] wrote: Adam, would it be an option to chain skins so that a custom skin can inherit

Re: Use of tr:document tag

2006-10-07 Thread Simon Lessard
Try the following: tr:document f:facet name=metaContainer h:outputText value=script type=\text/javascript\ src=#{ facesContext.externalContext.requestContextPath()}/js/dojo/dojo.js}\/script escape=false/ /f:facet /tr:document Regards, ~ Simon On 10/7/06, Naresh Bhatia [EMAIL PROTECTED]

Re: AJAX and progressIndicator?

2006-10-05 Thread Simon Lessard
Hmmm, The page should not fully reload itself... Only the components with a partialTrigger on the poll should... About including the delay on the indicator itself, I would not be against it as it's about the only real life usage of the poll. We could even make progressIndicator extends poll

Re: Re: AJAX and progressIndicator?

2006-10-05 Thread Simon Lessard
out if no action is taken. -- Adam On 10/5/06, Simon Lessard [EMAIL PROTECTED] wrote: Hmmm, The page should not fully reload itself... Only the components with a partialTrigger on the poll should... About including the delay on the indicator itself, I would not be against it as it's about

Re: Problem combining trinidad and facelets

2006-09-29 Thread Simon Lessard
Hello Böhringer, Why do you use a c:foreach in the navigationPane? You should use nodeStamp instead. I think this iswhat iscausing your problem. Regards, ~ Simon On 9/29/06, Böhringer Jochen [EMAIL PROTECTED] wrote: Hello, If I setup Trinidad and Facelets and try to execute the

Re: Problem combining trinidad and facelets

2006-09-29 Thread Simon Lessard
/tr:navigationPane /f:facet /tr:panelPage /tr:form ui:debug / /tr:document Regards Jochen -Ursprüngliche Nachricht- Von: Simon Lessard [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 29. September 2006 16:57 An: adffaces-user@incubator.apache.org

Re: Emphasize important fields with skin

2006-09-25 Thread Simon Lessard
); Simon Lessard píše v Út 19. 09. 2006 v 11:25 -0400: Hello Martin, I don't think it is the problem. I believe the problem is actually located in the interaction between panelFormLayout and inputComponents. Output otherStyleClass styleImportant x1a is correct, it mean that the element has three

Re: Use of custom style sheets

2006-09-25 Thread Simon Lessard
) You can see that behaviour if you step-debug through CoreRenderingContext.java. (linebreaks are not trimmed) greets! clemens Simon Lessard wrote: You must specify the skin-family in trinidad.config.xml to value: blue. On 9/25/06, Causevic, Dzenan [EMAIL PROTECTED] wrote: I am a beginner

Re: Use of custom style sheets

2006-09-25 Thread Simon Lessard
. Syracuse, NY (315) 453-2912 x5346 -Original Message- From: Simon Lessard [mailto:[EMAIL PROTECTED] Sent: Monday, September 25, 2006 2:54 PM To: adffaces-user@incubator.apache.org Subject: Re: Use of custom style sheets Hello Dzenan, No, you should be able to palce the CSS anywhere, /adf

Re: Emphasize important fields with skin

2006-09-19 Thread Simon Lessard
Simon Lessard píše v Čt 07. 09. 2006 v 09:13 -0400: Hmmm try the following then, it might work: tr:inputText ... styleClass=styleImportant / And in the skin: .styleImportant af|inputText::content { color: #325fa4; font-weight: bold; } On 9/7/06, Martin Koci [EMAIL PROTECTED] wrote

Re: tr:inputText Skinning Question

2006-09-14 Thread Simon Lessard
Hello Markus, Is the use case only about required fields or also some other states? If it's about required only, there's a patche pending that will fix it. Regards, ~ Simon On 9/14/06, Markus Heinisch [EMAIL PROTECTED] wrote: Hi, I want to paint the background color of a tr:inputText

Re: ADF Bindings Servlet/Filter not invoking Faces Servlet

2006-09-12 Thread Simon Lessard
Hello Samba, This is more an ADF issue than a Trinidad one. However, I will try my best to answer it. Data bindings uses a pageDef file, I assume you already found that out. However, Facelet uses templates based on different pages. The question thus arise, where do you place your bindings? In

Re: ADF Bindings Servlet/Filter not invoking Faces Servlet

2006-09-12 Thread Simon Lessard
As for the extension I think you should use .xhtml for everything when using Facelets. I don't remember if I actually succeeded using both techonology together however. On 9/12/06, Simon Lessard [EMAIL PROTECTED] wrote: Hello Samba, This is more an ADF issue than a Trinidad one. However, I

Re: ADF Bindings Servlet/Filter not invoking Faces Servlet

2006-09-12 Thread Simon Lessard
, Simon Lessard [EMAIL PROTECTED] wrote: Hmmm, Have you tried the following using XHTML extension for Facelets as well? Theorically it *should* work. filter-mapping filter-nameadfBindings/filter-name url-pattern*.xhtml/url-pattern /filter-mapping filter-mapping filter

Re: Looking for container tag

2006-09-06 Thread Simon Lessard
panelGroups is what should be used in that case indeed. panelBox is a more complex component. On 9/6/06, Daniel Hannum [EMAIL PROTECTED] wrote: panelGroupLayout did the trick, and most importantly, it didn't impose any layout changes. It's an invisible container of components. Just what I

Re: selectManyShuttle skinning

2006-09-01 Thread Simon Lessard
Hello Martin, I added some more comments inline, On 8/31/06, Martin Dickson [EMAIL PROTECTED] wrote: Hi Simon, Thank you for the reply -- comments on comments inline. :-) Simon Lessard wrote: On 8/30/06, Martin Dickson [EMAIL PROTECTED] wrote: 1) How can one turn off / not render / hide

Re: How to style a single tr:inputText with a background-color depending on a state?

2006-08-31 Thread Simon Lessard
Hello Markus, It will be possible soon since I posted a patch about this, we only need to commit it when we're sure it works fine. We have a small issue with states currently though so it might not be today. You'll be able to do just what you want using af|inputText:required::content/ Regards,

Re: unsubscribe

2006-08-29 Thread Simon Lessard
) Expecting people to guess [EMAIL PROTECTED] and adffaces-user- [EMAIL PROTECTED] mailto: [EMAIL PROTECTED] is asking a bit much don't you think? From: Simon Lessard [mailto:[EMAIL PROTECTED] Sent: Mon 28-Aug-06 1:30 PM To: adffaces-user@incubator.apache.org Subject: Re

Re: unsubscribe

2006-08-28 Thread Simon Lessard
... Why is so many people trying to unsubscribe using that method? Unsubscribing only require an empty email to be sent to [EMAIL PROTECTED] Regards, ~ Simon On 8/28/06, Rick Rodriguez [EMAIL PROTECTED] wrote: unsubscribe -Original Message- From: Hall, Peter [mailto:[EMAIL

Re: unsubscribe

2006-08-28 Thread Simon Lessard
message. or click here: mailto: [EMAIL PROTECTED] -Original Message- From: Simon Lessard [mailto:[EMAIL PROTECTED] Sent: Mon 8/28/2006 11:30 AM To: adffaces-user@incubator.apache.org Cc: Subject:Re: unsubscribe ... Why is so many people trying to unsubscribe using