ajax and custom css/js files for porlets

2006-07-25 Thread Rogerio Pereira
Somebody could get AJAX support on portlets? Any ideas about how add custom css/js files on page head to use on my portlets?-- Yours truly (Atenciosamente),Rogério

Jetspeed2, MyFaces and Facelets

2006-07-25 Thread Rogerio Pereira
Anyone has some experience with this combination?-- Yours truly (Atenciosamente),Rogério

Re: Jetspeed2 and MyFaces

2006-07-25 Thread Rogerio Pereira
I could get the portlet rendered, but i could'n call the method in bean and the bean is properly registered. Do u use facelets in your portlets?2006/7/25, Greg Reddin < [EMAIL PROTECTED]>:On Jul 25, 2006, at 9:47 AM, Rogerio Pereira wrote: > Somebody got myfaces portlets working on

Jetspeed2 and MyFaces

2006-07-25 Thread Rogerio Pereira
Hi guys!Somebody got myfaces portlets working on jetspeed2? The portals-bridges-jsf-1.0.jar is required?-- Yours truly (Atenciosamente),Rogério

Re: EntityConverter

2006-07-23 Thread Rogerio Pereira
Wiki entry created.2006/7/23, Rogerio Pereira <[EMAIL PROTECTED]>: Matthias and Cagatay (Validator man):Sure! I'll add to myfaces wiki.2006/7/23, Cagatay Civici < [EMAIL PROTECTED]>: Hi,I'm an hibernate user and cannot think of using hibernate-jsf without an entity convert

Re: EntityConverter

2006-07-23 Thread Rogerio Pereira
OTECTED]> wrote: Since I am not a hibernate user but thinking that can be sorta usfulfor other people,may I ask you to add this stuff to our wiki ?Thanks,On 7/22/06, Rogerio Pereira < [EMAIL PROTECTED]> wrote:> Hi guys!>> I created a EntityConverter that get the value entered by user i

EntityConverter

2006-07-22 Thread Rogerio Pereira
Hi guys!I created a EntityConverter that get the value entered by user in a UIInput component and when the form is submited this value is converted to an persistence layer entity that you can managed in you bean as u wish, can work with persistence layers that provide a generic way to load entities

Re: about converters

2006-07-22 Thread Rogerio Pereira
I could make converter works by replacing selectOneMenu.setSubmittedValue(value) to selectOneMenu.setValue(value), now my entityConverter works with any persistence layer and any entity as i wish. 2006/7/21, Rogerio Pereira <[EMAIL PROTECTED]>: Oh man sorry, it was a mistake with GMail :)

Re: about converters

2006-07-21 Thread Rogerio Pereira
ar for my Cayenne entities without problems.   I'mnot sure why you'd need the submitted value.   getAsObject passes thesubmitted value as an argument, and the return value for getAsString will be used as the submitted value on rendering.On 7/21/06, Rogerio Pereira <[EMAIL PROTECTED]&

about converters

2006-07-21 Thread Rogerio Pereira
Hi guys,The converters only works for selectOneMenus when i send data from page to bean or works when i change the value from bean and then refresh the page?In my case when i call selectOneMenu.setSubmittedValue (someObject); from a ValueChangeEvent, no conversion is done, this is correct?-- Yours

can i use sandbox selectItems with an converter?

2006-07-20 Thread Rogerio Pereira
Hi!Can i use the brand new selectItems tag in tomahawk sandbox with an converter?-- Yours truly (Atenciosamente),Rogério

Re: about a new contribution

2006-07-19 Thread Rogerio Pereira
I would like help on this effort.2006/7/19, Rogerio Pereira <[EMAIL PROTECTED]>: Ok, i'll close this issue. 2006/7/19, Cagatay Civici <[EMAIL PROTECTED] >: Hi,Although the component looks very useful, it leads to an overlap.As Mario mentioned the generic approach we are going

problem with and

2006-07-19 Thread Rogerio Pereira
I have a inputText and a converter attached to this inputText, when my inputText looses the focus the form is submited and a ValueChangeEvent is called, i load an entity using the inputText value as entity ID and then i set the form field values with component.setSubmittedValue(myentity.getName())

Re: about a new contribution

2006-07-19 Thread Rogerio Pereira
Ok, i'll close this issue. 2006/7/19, Cagatay Civici <[EMAIL PROTECTED]>: Hi,Although the component looks very useful, it leads to an overlap.As Mario mentioned the generic approach we are going to add for client side validation-conversion already covers these kinds of requirements. Instead of new

about a new contribution

2006-07-19 Thread Rogerio Pereira
I would like know if a commiter can take a look on this jira issue:https://issues.apache.org/jira/browse/TOMAHAWK-549and tell me if can be included on sandbox. -- Yours truly (Atenciosamente),Rogério

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Rogerio Pereira
nualy for each column, maybe the dataTable wasn't enable to determine them right. Rogerio Pereira <[EMAIL PROTECTED]> wrote: Now i could load and fill the dataTable, but when i click in sort links nothing happens, i need set preserveDataModel="true" in order to get sorting w

Execptions with SortableDataModel

2006-07-19 Thread Rogerio Pereira
I´m trying to implement sorting feature in my dataTable like we have in wiki entry:http://wiki.apache.org/myfaces/Working_with_auto_sortable_tables at subtopic "Enable auto sort by columns", but when i fill my from my action method and the reload the page i get this exception:java.lang.ClassCastExc

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Rogerio Pereira
pen a Jira issue for this? Thanks,CatalinRogerio Pereira < [EMAIL PROTECTED]> wrote: The real problem is, i have columns that doesn�t have the header facet.2006/7/19, Rogerio Pereira < [EMAIL PROTECTED]>: Hi guys,I have a dataTable that only filled after execute a method on my bea

Re: t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Rogerio Pereira
The real problem is, i have columns that doesn´t have the header facet.2006/7/19, Rogerio Pereira <[EMAIL PROTECTED]>: Hi guys,I have a dataTable that only filled after execute a method on my bean,  this  table uses sorting using this code:                       var

t:dataTable DataModel must exist when using sorting?

2006-07-19 Thread Rogerio Pereira
Hi guys,I have a dataTable that only filled after execute a method on my bean,  this  table uses sorting using this code:                      var="item"            value="#{bean.results}"           preserveDataModel="false"          

Re: SelectItem madness... anyway to avoid it?

2006-07-17 Thread Rogerio Pereira
Take a look in the brand new sandbox selectItens tag. That do this:car.id}" itemValue="#{ car.name}"/>2006/7/17, Paulo Silveira <[EMAIL PROTECTED]>: hello user list...it is not about the myfaces implementation, but I am just getting madabout using SelectItem all over my managed beans...some framewo

only use component binding is possible?

2006-07-17 Thread Rogerio Pereira
Hi guys!i decided use only component binding in my jsf apps like this:but i can´t retrieve the value of this component, i tried: comp.getValue();comp.getLocalValue();comp.getSubmittedValue();and no sucess.Somebody has any idea?-- Yours truly (Atenciosamente),Rogério

Re: Form value update headache ( via ValueChangeEvent )

2006-07-14 Thread Rogerio Pereira
Mikael,How do u solved this?

Re: Form value update headache ( via ValueChangeEvent )

2006-07-14 Thread Rogerio Pereira
The only way is define a component binding and then use component.setSubmitedValue.For me, update model from ValueChangeEvent was always a problem, too much effort for a simple thing, we really have s:valueChangeNotifier as option, but lacks a TagHandler for Facelets. -- Yours truly (Atenciosamente

about conversation tag

2006-07-13 Thread Rogerio Pereira
Hi guys,I created a page that can process more than 100 subscriptions in some circunstances, the conversation stuff can handle this situation with sucess?-- Yours truly (Atenciosamente), Rogério

Re: EJB3.0 and Backing Beans Design

2006-07-06 Thread Rogerio Pereira
2006/7/6, Mario Ivankovits <[EMAIL PROTECTED]>: Even if they come with the distribution, you have to take care of them.Additional issues?Well, personally I dont like it to use annotations for nearly everything.And seam would like to solve too much. For example JSF has some issues with redirects, e.

Shale / MyFaces / Facelets is possible?

2006-07-06 Thread Rogerio Pereira
Hi guys!This combination is possible or i must use Clay?-- Yours truly (Atenciosamente),Rogério

Re: EJB3.0 and Backing Beans Design

2006-07-06 Thread Rogerio Pereira
2006/7/6, Matthias Wessendorf <[EMAIL PROTECTED]>: Seam has tons of deps! to much.But this deps comes with JBoss Seam distribution, somebody found any other big issue on JBoss Seam beyond this one?-- Yours truly (Atenciosamente), Rogério

Re: valueChangeListener method called only once

2006-06-28 Thread Rogerio Pereira
I solved this after put the bean in session scope, maybe u can solve this by using t:saveState to save your bean entirely.2006/6/28, Gregg Bolinger < [EMAIL PROTECTED]>:On my form I have 3 selectOneMenu's.category subCategorysubSubCategoryWhen category is changed, I call changeCategory(ValueChangeE

Tips on MyFaces source code

2006-06-22 Thread Rogerio Pereira
Hi guys,I'm trying to fix this bug: http://issues.apache.org/jira/browse/MYFACES-1312Right now i need to know where in myfaces source code the dependency injection is handled, i mean, where i must look in myfaces source code to see the setter of my managed property inside my bean being called by my

Re: IRC Channel #myfaces

2006-06-21 Thread Rogerio Pereira
i only need connect on irc.freenode.net, and then join on #myfaces, if you wish join in ##jsf you must register your nickname first.2006/6/21, Gregg Bolinger < [EMAIL PROTECTED]>:How do you use it?  I've never connected to an IRC channel before.  I use Trillian which has a plugin for the client tho

Re: IRC Channel #myfaces

2006-06-21 Thread Rogerio Pereira
Some MyFaces users are on ##jsf channel.2006/6/21, Julian Ray <[EMAIL PROTECTED]>: Does anybody use this channel? whenever I check it seems somewhat under-represented :)   -- Yours truly (Atenciosamente),Rogério

Re: help for apache myfaces with facelets

2006-06-20 Thread Rogerio Pereira
Give more details, errors, sample code...2006/6/20, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: Dears,I am trying to use apache myfaces with facelets, butthe xhtml is not converted to html. I hope there is anyone there to give me some ideas why!!!thank you so much,Mariana-- Yours truly (Atenciosamente),

Re: javax.faces.STATE_SAVING_METHOD doesn't work for form submting

2006-06-17 Thread Rogerio Pereira
This problem affect developers that uses facelets and can be solved by upgrading to a newer version of facelets.2006/6/16, pokkie <[EMAIL PROTECTED] >:I am experiencing exactly the same problem. Have you found a solution by any chance?--View this message in context: http://www.nabble.com/javax.face

Re: [OT / Announcement] new name for Oracle's ADF Faces donation

2006-06-11 Thread Rogerio Pereira
Interesting, Trinidad and Tobago, remembers the country, world cup...2006/6/11, Matthias Wessendorf <[EMAIL PROTECTED]>: Hi-during the last three days we (the ADF Faces team) were looking for anew name. Lot's of users suggested a new name and we finally voted onthat names. The jsf/myfaces community

Advice about MyFaces/Facelets/Hibernate training

2006-06-10 Thread Rogerio Pereira
Hi guys!How much time i'll spend to do this kind of training (in hours)? I'm being request for training here in Brazil.-- Yours truly (Atenciosamente),Rogério

Re: Resolving URIs using ViewHandler.getResourceURL

2006-06-09 Thread Rogerio Pereira
2006/6/9, Matthias Wessendorf <[EMAIL PROTECTED]>: well, you are welcome to help out on adding weblets.it is a great projectI'll do the changes and attach the patches to jira ticket. please: use the mailing lists ;)ok, sorry : )

Resolving URIs using ViewHandler.getResourceURL

2006-06-09 Thread Rogerio Pereira
Hi,I checked the weblets code and this solution uses ViewHandler.getResourceURL, right now only tree, tree2, swapimage and jscookmenu uses ViewHandler.getResourceURL and script, stylesheet and graphicImage don't, are there any issues about use ViewHandler.getResourceURL to resolve resources URIs? -

changes on focus component

2006-06-07 Thread Rogerio Pereira
Hi Mike!I not sure if this is can be changed, but i need a special focus renderer output for HtmlInputDate, look this:HtmlFocusRenderer.java:was    if(targetComponent != null)    {     String clientId = targetComponent.getClientId(facesContext);now:    if(targetComponent != null

Re: advice about dependency injection

2006-06-02 Thread Rogerio Pereira
-Original Message-----From: Rogerio Pereira [mailto: [EMAIL PROTECTED]]Sent: Thu 6/1/2006 1:44 PMTo: MyFaces DiscussionSubject: Re: advice about dependency injectionAny sugestions?I have 3 beans: beanA, beanB and beanC.> > Both beanA and beanB uses beanB (ArrayList), from beanA i only remove>

Re: advice about dependency injection

2006-06-01 Thread Rogerio Pereira
Any sugestions? I have 3 beans: beanA, beanB and beanC.Both beanA and beanB uses beanB (ArrayList), from beanA i only remove itens from beanB and from beanC i add, get and set a item in beanB.Everything is ok when beanC to these operations on beanB but if i try to remove an item from beanA i'm gett

Re: Portuguese

2006-05-31 Thread Rogerio Pereira
use UTF-8 as encoding2006/5/31, Vladimir Coutinho <[EMAIL PROTECTED]>: I'm having problems whit jsf. My language is portuguese. When use some outputText like "Exclusão" the jsf sends to browser"Exclusão". No problem if is part of the html, but when text like that are in a _javascript_ message (like

bean values restored after valuechangelistener?

2006-05-31 Thread Rogerio Pereira
Hi,I have a inputText using valueChangeListener that is called every time when inputText loses focus, this was woking fine with 1.1.1, but now with 1.1.3 this valueChangeListener is called everytime when i submit the page data. I fixed this by using saveState on inputText valuebinding, but now i ne

Re: serius issue with dataTable and TomaHawk 1.1.4

2006-05-30 Thread Rogerio Pereira
In fact this is a ValueChangeListener issue. I have a inputText that has a valueChangeListener but this valueChangeListener is being called all the time, i fixed this by removing the valueChangeListener after the end of its execution. The old code was working fine with myfaces 1.1.1-- Yours truly (

Re: serius issue with dataTable and TomaHawk 1.1.4

2006-05-30 Thread Rogerio Pereira
I'm using myfaces 1.1.4, tomahawk 1.1.4, facelets 1.1.6 and dataTable with preserveDataModel="false" and a saveState assigned to dataTable ArrayList.2006/5/30, Rogerio Pereira < [EMAIL PROTECTED]>: Hi guys,I have a page with two buttons and one dataTable, with button1 i add a

serius issue with dataTable and TomaHawk 1.1.4

2006-05-30 Thread Rogerio Pereira
Hi guys,I have a page with two buttons and one dataTable, with button1 i add a new item to dataTable and with button2 i call another method, if I call button1 to add an item and then call button2 the dataTable contents is being replaced with old ArrayList contents... : ( Thanks for any answers...--

Re: IndexOutOfBoundsException with custom component

2006-05-30 Thread Rogerio Pereira
Right now i'm getting many problems related to arraylist and i'm getting similar error when using dependency injection with ArrayLists in session scope.2006/5/30, Ionut S < [EMAIL PROTECTED]>:Hi there,I have created a custom components that agregates 2 other components. The component works just fin

Re: inputCalendar with popup button problem

2006-05-30 Thread Rogerio Pereira
Remove this:            org.apache.myfaces.webapp.StartupServletContextListener     I think this is not used by MyFaces anymore.2006/5/30, mindu <[EMAIL PROTECTED] >:yes, i have this.    extensionsFilter     org.apache.myfaces.component.html.util.ExtensionsFilter        upl

panelNavigation isn't supported anymore?

2006-05-27 Thread Rogerio Pereira
Hi,The work on panelNavigation will be discontinued? I said it because i'm getting clear_linkDummyForm is not defined errors...Any ideas?-- Yours truly (Atenciosamente),Rogério

advice about dependency injection

2006-05-26 Thread Rogerio Pereira
I have 3 beans: beanA, beanB and beanC.Both beanA and beanB uses beanB (ArrayList), from beanA i only remove itens from beanB and from beanC i add, get and set a item in beanB.Everything is ok when beanC to these operations on beanB but if i try to remove an item from beanA i'm getting an IndexOutO

Re: question about dependency injection

2006-05-24 Thread Rogerio Pereira
Any suggestions?Thanks for any answer.2006/5/24, Rogerio Pereira <[EMAIL PROTECTED]>: I have 3 beans: beanA, beanB and beanC.Both beanA and beanB uses beanB (ArrayList), from beanA i only remove itens from beanB and from beanC i add, get and set a item in beanB.Everything is ok when beanC to

question about dependency injection

2006-05-24 Thread Rogerio Pereira
I have 3 beans: beanA, beanB and beanC.Both beanA and beanB uses beanB (ArrayList), from beanA i only remove itens from beanB and from beanC i add, get and set a item in beanB.Everything is ok when beanC to these operations on beanB but if i try to remove an item from beanA i'm getting an IndexOutO

Re: Who uses Single Sign On with JSF?

2006-05-23 Thread Rogerio Pereira
Can you share the code?2006/5/23, Mike Kienenberger <[EMAIL PROTECTED]>: On 5/23/06, Rogerio Pereira <[EMAIL PROTECTED]> wrote:> But jcifs only works with samba related stuff?jcifs works with Windows domain controllers.   Don't know if that's what you're after, bu

Re: Who uses Single Sign On with JSF?

2006-05-23 Thread Rogerio Pereira
     -Original Message-> From: Rogerio Pereira [mailto: [EMAIL PROTECTED]]> Sent: Tuesday, May 23, 2006 2:25 PM> To: MyFaces Discussion> Subject: Who uses Single Sign On with JSF? >>> Hi,>> I would like to know if somebody

Who uses Single Sign On with JSF?

2006-05-23 Thread Rogerio Pereira
Hi,I would like to know if somebody uses SSO with JSF, i'm trying to find a good way to do it in my apps.Thanks for any answer.-- Yours truly (Atenciosamente),Rogério

Re: Does anyone have the IE png fix working with Tobago/myFaces?

2006-05-21 Thread Rogerio Pereira
I'm using PNG Behavior in my JSF/Facelets apps:http://webfx.eae.net/dhtml/pngbehavior/pngbehavior.htmlworks fine for me...

Re: about the thread "tag to truncate text"

2006-05-12 Thread Rogerio Pereira
On 5/12/06, Mike Kienenberger <[EMAIL PROTECTED]> wrote: Julian (and Rogerio),Is there any reason why we can't make getAsObject also callformat(value.toString())?Currently, this is only an output converter.   I'd also like it workas an input converter as well unless there's an objection.   As an in

Re: about the thread "tag to truncate text"

2006-05-12 Thread Rogerio Pereira
i think caseConverter isn't the correct name since i don't wan't capitalize, just truncate.-- Yours truly (Atenciosamente),Rogério

Re: about the thread "tag to truncate text"

2006-05-12 Thread Rogerio Pereira
I pushed some code to sandbox last week which includes a string converter tagwhich truncates text, changes case and capitalizes. I don't think its made it into the build yet but you can find it on JIRAwhat the idea behind elipsis (...) in this converter? -- Yours truly (Atenciosamente),Rogério

svn repo is back but...

2006-05-12 Thread Rogerio Pereira
in the myfaces website we have this address for anonymous access:http://svn.apache.org/repos/asf/myfaces/site/trunkbut this address contains only the website stuff, if i switch to old url i can get all code. -- Yours truly (Atenciosamente),Rogério

about the thread "tag to truncate text"

2006-05-12 Thread Rogerio Pereira
Somebody knows what was the end of this thread? Any solution was developed?-- Yours truly (Atenciosamente),Rogério

Re: what is better to jsf, Birt? JasperReports?

2006-05-12 Thread Rogerio Pereira
I use JasperReports with JSF and works very well.On 5/12/06, Dudu <[EMAIL PROTECTED]> wrote: I need to do reports of my data. What is better to jsf? -- --DuduGoogleTalk: eduardopichler[at]gmail[dot]comskype:eduardopichler -- Yours truly (Atenciosamente),Rogério

inputDate and popupCalendar

2006-05-12 Thread Rogerio Pereira
Hi,I'm using Facelets 1.1.6 and Tomahawk 1.1.2 and when i put inputDate on my page i can't see the popupCalendar button, somebody has any idea about how can i fix it?-- Yours truly (Atenciosamente), Rogério

Re: tomahawk-sandbox release date?

2006-05-10 Thread Rogerio Pereira
A missing "nbuild" is already an entry in your JIRA That url will be the only location where i can found jars? If yes, no problem, but we must put the link at myfaces website or wiki.-- Yours truly (Atenciosamente),Rogério

Re: tomahawk-sandbox release date?

2006-05-10 Thread Rogerio Pereira
some components from sandbox might be pushed to the tomahawk-core stuff.Sandbox is "just" some *experimental* stuff... Well, this means sandbox will never be avaliable for download and developers will always build the jar from SVN?I'm thinking in work on focus component promotion to tomahawk. -- Yo

tomahawk-sandbox release date?

2006-05-09 Thread Rogerio Pereira
Hi guys,When tomahawk-sandbox will be released?-- Yours truly (Atenciosamente),Rogério

Re: digest option for mail list?

2006-05-05 Thread Rogerio Pereira
[EMAIL PROTECTED] > [EMAIL PROTECTED] " From: Rogerio Pereira [mailto:[EMAIL PROTECTED]] Sent: Friday, May 05, 2006 3:54 PMTo: MyFaces DiscussionSubject: digest option for mail list? Hi guys,Somebody knows if this is possible, i searched some info about it in apache.org site but no suc

digest option for mail list?

2006-05-05 Thread Rogerio Pereira
Hi guys, Somebody knows if this is possible, i searched some info about it in apache.org site but no sucess.-- Yours truly (Atenciosamente),Rogério

Re: How to not display the Data Scroller when their is only 1 page?

2006-05-05 Thread Rogerio Pereira
use renderFacetsIfSinglePage="false" attribute of dataScrollerOn 5/5/06, Paul Spencer <[EMAIL PROTECTED] > wrote:I would like to not display the Data Scroller when their is only 1 page since their is nothing to scroll to.   How do Idisable the dataScroller in this case?Paul Spencer-- Yours truly (

how update an window from another window

2006-05-04 Thread Rogerio Pereira
I have a popup window that must update the page with some dataTables in the parent window when i click on close button, how can i do it?I tried:window.opener.document.forms[0].submit() and the dataTable isn't updated window.opener.location.reload() but this method calls shows a message box about re

Re: Transfering data between pages.

2006-05-04 Thread Rogerio Pereira
On 5/4/06, Mert Çalışkan <[EMAIL PROTECTED]> wrote: You should specify the list as a managed-bean and use the same managed bean in main and popup page. Other UIComponents should be specified in two different backing-beans.Do you have an example?-- Yours truly (Atenciosamente),Rogério

Re: Transfering data between pages.

2006-05-04 Thread Rogerio Pereira
Yes same managed-bean Rogerio. I suppose you were adding the results from the bean in popup page to the bean in main page.My problem is, i have 5 fields and 3 buttons on popup window and put this stuff in the same bean will make the things a little confuse and dificult to understand and manage la

Re: Transfering data between pages.

2006-05-04 Thread Rogerio Pereira
Yes same managed-bean Rogerio. I suppose you were adding the results from the bean in popup page to the bean in main page.Yes, you is right, but if i use the same managed-bean the things will be harder to understand later. -- Yours truly (Atenciosamente),Rogério

Re: Transfering data between pages.

2006-05-03 Thread Rogerio Pereira
Use the same list for the main and popup page. Define it as a managed-bean with session scope. You mean use the same managed-bean in both pages? After refreshing the main page you should see the address list within the main page. So no need to "add" operations, thx to managed-beans.What u mean wi

Transfering data between pages.

2006-05-03 Thread Rogerio Pereira
Hi guys,I have a dataTable on a page and below this page i have a link the opens a popup window where i can fill a form with some values (eg: an address entry) and then i click on "Save" button to add this data to dataTable ArrayList (with addresses), i can do it many times i want before close the

Re: Unit tests

2006-05-02 Thread Rogerio Pereira
Use struts-shale test framework.

Re: error while resolving artifact xslt-plugin

2006-04-28 Thread Rogerio Pereira
just add the atanion repo to settings file like this:                projects                            atanion            atanion repo            http://www.atanion.com/maven2                                                                   projects   

Re: error while resolving artifact xslt-plugin

2006-04-27 Thread Rogerio Pereira
I donwloaded the plugin and installed by hand here and the problem has gone.

Re: error while resolving artifact xslt-plugin

2006-04-27 Thread Rogerio Pereira
On 4/26/06, Sean Schofield <[EMAIL PROTECTED]> wrote: The xslt ref is SNAPSHOT though and that was only on the antanionserver.  So that remains a problem AFAIK.I put the atanion repo in my settings.xml but i got an "Repository 'atanion' will be blacklisted" message.

Re: error while resolving artifact xslt-plugin

2006-04-26 Thread Rogerio Pereira
So i must add ibiblio repo here.

Re: error while resolving artifact xslt-plugin

2006-04-26 Thread Rogerio Pereira
And with tobago too:Downloading: http://www.apache.org/dist/maven-repository//org/apache/maven/wagon/wagon-ssh-external/1.0-alpha-6/wagon-ssh-external-1.0-alpha-6.pom [INFO] [ERROR] BUILD ERROR[INFO] ---

error while resolving artifact xslt-plugin

2006-04-26 Thread Rogerio Pereira
Hi guys i got this error while maven was downloding the artifacts:Downloading: http://cvs.apache.org/maven-snapshot-repository/org/codehaus/mojo/xslt-maven-plugin/1.0-SNAPSHOT/xslt-maven-plugin-1.0-SNAPSHOT.pom[WARNING] Unable to get resource from repository apache-maven-snapshots ( http://cvs.apa

Re: DataTable with sandbox Ajax components

2006-04-25 Thread Rogerio Pereira
It would be better to have the update occur when you click the command button though because the refreshes may mostly just go to waste, but that's not implemented yet.  I agree, i think autoUpdateTable should be replaced with something like occurs with standards components working with CommandButt

DataTable with sandbox Ajax components

2006-04-25 Thread Rogerio Pereira
Hi guys,Can i use a commandButtonAjax with dataTable, i mean, can i return an ArrayList and fill the dataTable in Ajax way?-- Yours truly (Atenciosamente),Rogério

Re: AjaxAnywhere, almost there!

2006-04-25 Thread Rogerio Pereira
The MyFaces Ajax components set at sandbox.

myfaces-api.jar missing on myfaces-example-sandbox.war

2006-04-24 Thread Rogerio Pereira
Hi,The maven build process is generating myfaces-example-sandbox.war without myfaces-api.jar causing deployment errors.-- Yours truly (Atenciosamente),Rogério

Re: sandbox focus component doesn't works with *Ajax components

2006-04-24 Thread Rogerio Pereira
But focus component only generates JS code that is executed by browser setting the focus on specified component, the MyFaces Ajax execute JS code generated on the server?On 4/24/06, Werner Punz <[EMAIL PROTECTED]> wrote:Werner Punz schrieb: > Rogerio Pereira schrieb:>> Hi,>>&

how remove the animated image at the right of commandButtonAjax?

2006-04-22 Thread Rogerio Pereira
Hi guys,How can i remove that image at the right of commandButtonAjax?-- Yours truly (Atenciosamente),Rogério

sandbox focus component doesn't works with *Ajax components

2006-04-22 Thread Rogerio Pereira
Hi,Is there any way to make focus componente works with *Ajax components? I mean, i need set the focus to an component after an sucessfull call to method like i'm doing today with focus component.Somebody has any tips about how can i add this functionality to focus component in Ajax way? -- Yours t

Re: strange error while compiling myfaces from svn sources

2006-04-20 Thread Rogerio Pereira
In fact this is an "Network unreachable" while running ImplClassElementTestCase...On 4/20/06, Rogerio Pereira < [EMAIL PROTECTED]> wrote:Hi guys,I'm trying to compile myfaces from svn sources, but i'm getting this error: [surefire] Running org.apache.myfaces.test.ImplCla

strange error while compiling myfaces from svn sources

2006-04-20 Thread Rogerio Pereira
Hi guys,I'm trying to compile myfaces from svn sources, but i'm getting this error:[surefire] Running org.apache.myfaces.test.ImplClassElementTestCase[surefire] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0,262 sec FAILURE !! Note: I'm behing proxy and i set all proxy related info

SelectOneMenuAjax???

2006-04-19 Thread Rogerio Pereira
Hi,Is there any plans about an SelectOneMenuAjax component?-- Yours truly (Atenciosamente),Rogério

Tobago DateUnitTest failure

2006-04-18 Thread Rogerio Pereira
Hi,I have a test failure on Tobago build process, is there any workaround?-- Yours truly (Atenciosamente),Rogério

Using Eclipse Maven2 plugin with MyFaces

2006-04-18 Thread Rogerio Pereira
Hi,Somebody could compile myfaces sources from eclipse using maven plugin?-- Yours truly (Atenciosamente),Rogério

Re: [urgent help needed] Duplicate IDs are not fixed in MyFaces 1.1.3 with facelets?

2006-04-14 Thread Rogerio Pereira
Hmmm, why not update to facelets 1.14, i have both myfaces 1.1.3 and facelets 1.1.4 and i don't get dup ids anymore.On 4/14/06, Andrew Robinson < [EMAIL PROTECTED]> wrote:I am having duplicate ID problems still in MyFaces 1.1.3 on a reallycomplex page.Environment: MyFaces 1.1.3, Tomahawk 1.1.2, Fa

Re: AccordionPanel in sandbox examples doesn't works

2006-04-13 Thread Rogerio Pereira
Fixed, i'll create a patch...

AccordionPanel in sandbox examples doesn't works

2006-04-13 Thread Rogerio Pereira
Hi,I'm using FF 1.5 and when i try to load the accordionpanel example in sandbox examples war i get this error:Error: {expandedBg:"#63699c", hoverBg:"#63699c", collapsedBg:"#6b79a5", expandedTextColor:"#ff", expandedFontWeight:"bold", hoverTextColor:"#ff", collapsedTextColor:"#ced7ef", coll

Re: SVN sources build failure

2006-04-10 Thread Rogerio Pereira
Everything is ok now, thx!On 4/10/06, Werner Punz <[EMAIL PROTECTED]> wrote: Rogerio Pereira schrieb:> I already use maven here, the one option left is remove and fetch the> project again.>It is probably wise to do it, sometimes there are build artefacts fromides etc... lingerin

Re: SVN sources build failure

2006-04-10 Thread Rogerio Pereira
I already use maven here, the one option left is remove and fetch the project again.-- Yours truly (Atenciosamente),Rogério

SVN sources build failure

2006-04-09 Thread Rogerio Pereira
I got this error:Compiling 1 source file to /home/rogerio/projetos/java/myfaces/tomahawk/core/target/classes[INFO] [ERROR] BUILD FAILURE [INFO] [IN

<    1   2   3   >