Re: Using the myfaces sandbox

2007-05-29 Thread Mike Kienenberger
Matthieu, The Tomahawk taglib on the wiki is the one most of us are using. As we need new components, we add new entries for them in the wiki page. If there's an entry missing, it's probably because no one has needed that particular component under facelets yet. Note also that there is a

Re: This code works in all other browsers than Firefox, why?

2007-05-29 Thread Bjørn T Johansen
No javascript errors... Also tried using firebug but I can't find anything wrong :( BTJ On Tue, 29 May 2007 15:30:43 +0100 Bruno Aranda [EMAIL PROTECTED] wrote: Are you getting any javascript error? Can you give it a shot with firebug (useful firefox plugin). Maybe you can see what is

tomahawk 1.1.5: how to catch date changing from popup calendar

2007-05-29 Thread xVik
i need to catch every date changing: t:inputDate id=dateFrom value=#{bean.date} popupCalendar=true onchange=this.form.submit(); direct date changing (typing in input field generated by input date component) works fine, but when im using popup calendar for changing date onchange dont work how

Checking modifications between 2 view roots (state0

2007-05-29 Thread CasMeiron
Hi guys... I have a question: I need check wich components has changed (looking into old and new states), i can save the old view root state (after render response) to compare with the new one. Have a easy way to do that? Or ill need to get each components in my viewRoot children list and check

RE: Orchestra vs Spring-Annotations

2007-05-29 Thread Kito D. Mann
Hey, thanks for all of the insight, guys... ~~~ Kito D. Mann - Author, JavaServer Faces in Action http://www.virtua.com - JSF/Java EE consulting, training, and mentoring http://www.JSFCentral.com - JavaServer Faces FAQ, news, and

[Trinidad] GWT Integration

2007-05-29 Thread D. Cardon
Hi all, I'm using MyFaces Trinidad and am integrating the Google Web Toolkit (GWT) to work along with it. I am using the G4JSF project along with some of my own modifications. So far, everything on the client side is working just fine, but I am having difficulty communicating with the server

[Tobago] How to display all records in one page in tc:sheet

2007-05-29 Thread Vinay Konanki
Hi All, I need to display around 200 records in the Sheet. but my client's requirement is we should not use pagination, all the records should be display in one page. For this i removed pagination attributes in tc:sheet Controller, but problem is Its not displaying all 200 records, its showing

Re: [Tobago] How to display all records in one page in tc:sheet

2007-05-29 Thread Volker Weber
Hi Vinay, the default for rows is 100, to ensure all rows are rendered you can use a binding on rows: rows=#{empDetails.detailItemListSize} with public int getDetailItemListSize() { return detailItemList.size(); } Regards, Volker 2007/5/29, Vinay Konanki [EMAIL PROTECTED]: Hi All,

Re: [Trinidad] GWT Integration

2007-05-29 Thread Adam Winer
If there's no tree, I suspect that the state parameter is not getting submitted. Check the G4JSF code to see if it has hardcoded a list of request parameters to submit. -- Adam On 5/29/07, D. Cardon [EMAIL PROTECTED] wrote: Hi all, I'm using MyFaces Trinidad and am integrating the Google

Re: [Trinidad] GWT Integration

2007-05-29 Thread D. Cardon
Thanks for your response, I looked into it and found out that when G4JSF builds its request, it send the javax.faces.ViewState variable in the request. Do I need to have it send something different for Trinidad? --David --- Adam Winer [EMAIL PROTECTED] wrote: If there's no tree, I suspect

Sanbox Info

2007-05-29 Thread Carlos Ortiz
Hi, How i set the inputSuggest id; when set in the Map, i put a simple int, but when i submit the form it returns y_choise# # is the selected Id , any ideas. -- b Vi Veri Veniversum Vivus Vici [Por la fuerza de la verdad, mientras viví, conquisté el universo] /b

[OT] Tool for adding server side code to CSS files

2007-05-29 Thread Andrew Robinson
It can be really annoying to customize CSS files per browser type, using CSS hacks to identify Firefox, IE6 vs. IE7, etc. Instead, it would be much better to use server side code to parse some kind of CSS templates that are able to produce CSS with access to variables like browser vendor and

Re: [Trinidad] GWT Integration

2007-05-29 Thread Adam Winer
The Trinidad 1.2 code sends javax.faces.ViewState (the 1.2 spec requires this), but the trunk doesn't, instead sending org.apache.myfaces.trinidad.faces.STATE. If you're using JSF 1.2, you could (and should) use the Trinidad 1.2 code. -- Adam On 5/29/07, D. Cardon [EMAIL PROTECTED] wrote:

Buttons in datatable not firing events

2007-05-29 Thread Alexander Wallace
Hi All... I'm using one button per row in a data table to do some editing related to the row where the button is... The issue is that I'm using MyFaces 1.1.4, and I think this is fixed in MyFaces 1.1.5. But I'm also using Tomahawk bridge to work in portlets and as far as I know it is

Re: [Trinidad] GWT Integration

2007-05-29 Thread Luka Surija
How stable is Trinidad 1.2 comparing with 1.0.1? Luka Adam Winer wrote: The Trinidad 1.2 code sends javax.faces.ViewState (the 1.2 spec requires this), but the trunk doesn't, instead sending org.apache.myfaces.trinidad.faces.STATE. If you're using JSF 1.2, you could (and should) use the

Re: [OT] Tool for adding server side code to CSS files

2007-05-29 Thread Mike Kienenberger
I can't remember if my web designers have had to use this, but at least under Velocity, there's an escape XML function you can call if you have the escapeTool installed. http://velocity.apache.org/tools/devel/generic/EscapeTool.html On 5/29/07, Andrew Robinson [EMAIL PROTECTED] wrote: It can

[Trinidad] tr:switcher - inputs reset on validation failure

2007-05-29 Thread noah
Facelets: html xmlns=http://www.w3.org/1999/xhtml; xmlns:f=http://java.sun.com/jsf/core; xmlns:h=http://java.sun.com/jsf/html; xmlns:ui=http://java.sun.com/jsf/facelets; xmlns:c=http://java.sun.com/jstl/core; xmlns:t=http://myfaces.apache.org/tomahawk;

Re: [Trinidad] GWT Integration

2007-05-29 Thread Adam Winer
If you're using JSF 1.2, it is more stable. -- Adam On 5/29/07, Luka Surija [EMAIL PROTECTED] wrote: How stable is Trinidad 1.2 comparing with 1.0.1? Luka Adam Winer wrote: The Trinidad 1.2 code sends javax.faces.ViewState (the 1.2 spec requires this), but the trunk doesn't, instead

Re: [OT] Tool for adding server side code to CSS files

2007-05-29 Thread Adam Winer
Trinidad skinning supports this functionality. You define a .css file with CSS-style extensions, and can have: @agent ie { ... this will only be applied in IE } @agent gecko { ... only in mozilla } ... and we output pure .css files when done. The tr:styleSheet tag then generates and picks

Re: [Trinidad] Weblogic + Debug

2007-05-29 Thread Francisco Passos
Thank you. Are there plans to address this bug soon? On 5/29/07, Adam Winer [EMAIL PROTECTED] wrote: Looks like a (minor) bug in Trinidad. Code should be clearing RenderingContext.setCurrentClientId() but isn't, and the assert is catching that. We should be running our tests with asserts

Re: DataScroller - Rendering/Pagination problem when rendered attribute is set to a conditional EL expression

2007-05-29 Thread Angel Miralles Arevalo
I suppose you are paging with t:dataScroller. Then try with the next datascroller's attribute: renderFacetsIfSinglePage= I think you have to put it to false... - Mensaje original De: Torsten Krah [EMAIL PROTECTED] Para: [EMAIL PROTECTED] CC: MyFaces Discussion

Re: Base is null error in JSF

2007-05-29 Thread ::SammyRulez::
it is not a myfaces problem, it iss a exadel studio isconfiguration or your typo. It happen to me when I mistype the name of the managed bean in the jsp. (actualy it do not happen anymore since my ide validate thath before running the app server) 2007/5/29, sandipp [EMAIL PROTECTED]: can

Re: Base is null error in JSF

2007-05-29 Thread sandipp
Hi Thanks for your reply, I checked for typo mistake many times.But it is 100% correct(Bean name in my JSp.) Also you said its realted to Exadel configuration.Can you please tell me what need to do while configuring in Exdel. Thanks sandip sandipp wrote: can anybody hep me in above

Re: Base is null error in JSF

2007-05-29 Thread ::SammyRulez::
I do not use exdel. but sice you said that the first project worked it must be a misconfiguration or something. Any way the error happens when JSF variable resolutor finds a null reference for the name in el. if you have #{beanName.value} some where and variable resolutor find no instance of

Re: Base is null error in JSF

2007-05-29 Thread sandipp
Hi , Do you have any idea/clue why its not finding instance of beanName, as its finding in my first project. Thanks Sandip sandipp wrote: Hi Thanks for your reply, I checked for typo mistake many times.But it is 100% correct(Bean name in my JSp.) Also you said its realted to Exadel

RE: Orchestra vs Spring-Annotations

2007-05-29 Thread Beelen, Marco
Hello all, I was suprised by the link mentioned as [1], because on the homepage of MyFaces, Orchestra isn't listed as a MyFaces Project in the menu. It would be a shame if anybody who is looking for such a solution can't find it due to a missing link. Perhaps somebody could add it? Add when

Re: [Tomahawk] ModalDialog: close with dialogok-event

2007-05-29 Thread Matthias Imhof
hi mario, I've modified my code like you said: h:panelGrid columns=2 t:commandButton id=ok forceId=true value=Ok action=#{backingBean.closeDialog} / t:commandButton id=cancel forceId=true

Re: [Trinidad] m1-incubating - 1.0.1 SNAPSHOT changes

2007-05-29 Thread Luka Surija
No, there is no JS errors any more. Just clicking on any link nothing happened. just like a href=# /a. I look like the problem when you forget to put tr:form component around commandLink and other components. Very strange. Is it maybe problem with glassfish, because I don't use myfaces JSF

Re: [Trinidad] m1-incubating - 1.0.1 SNAPSHOT changes

2007-05-29 Thread Henk Vanhoe
I had the same problem. It went away when I added client-validationINLINE/client-validation to my trinidad-config.xml. Henk Luka Surija wrote: No, there is no JS errors any more. Just clicking on any link nothing happened. just like a href=# /a. I look like the problem when you forget to put

Re: Popup not opening if operations take time

2007-05-29 Thread Volker Weber
Hi Madan, 2007/5/29, Madan Narra [EMAIL PROTECTED]: Hi Volker, This code worked and was able to see the popup as the time out has set to 1. I tested for few times to see the Time which my List gets set. Its taking around 8-10 sec so now this works fine. But the popup opens only after

[COMMUNITY] Ernst Fastl - Committer

2007-05-29 Thread Matthias Wessendorf
Congratulations to Ernst Fastl for becoming the newest Myfaces committer ! Ernst has provided patches and has been active on the mailing list to help other users on how to get up to speed with MyFaces. Thanks Ernst, and welcome to the team! -- Matthias Wessendorf further stuff: blog:

Re: Orchestra vs Spring-Annotations

2007-05-29 Thread Matthias Wessendorf
yes, open issue(s), to ensure we don't forget it. -M On 5/29/07, Beelen, Marco [EMAIL PROTECTED] wrote: Hello all, I was suprised by the link mentioned as [1], because on the homepage of MyFaces, Orchestra isn't listed as a MyFaces Project in the menu. It would be a shame if anybody who is

Re: [COMMUNITY] Ernst Fastl - Committer

2007-05-29 Thread Mario Ivankovits
Hi! Thanks Ernst, and welcome to the team! Welcome on board! Ciao, Mario

t:panelTabbedPane and data validation

2007-05-29 Thread David Delbecq
Hello, i have a form with the following structure: form + inputText + panelTabbedPane + panelTab + input (required=true) + panelTab + input (required=true) + commandButton + messages If i am in second tab and i click the submit button, the fields in first tab are not

Re: Why do managed beans must implement the Serializable interface

2007-05-29 Thread Trumml
Well, I tried to link my beans with the faces-config.xml (see http://www.jsffaq.com/Wiki.jsp?page=HowToAccessOneManagedBeanFromAnotherManagedBean http://www.jsffaq.com/Wiki.jsp?page=HowToAccessOneManagedBeanFromAnotherManagedBean ). In my case B is a manged property of A. Now I press a command

Re: Why do managed beans must implement the Serializable interface

2007-05-29 Thread Trumml
Well, I tried to link my beans with the faces-config.xml (see http://www.jsffaq.com/Wiki.jsp?page=HowToAccessOneManagedBeanFromAnotherManagedBean http://www.jsffaq.com/Wiki.jsp?page=HowToAccessOneManagedBeanFromAnotherManagedBean ). In my case B is a manged property of A. Now I press a command

Re: Base is null error in JSF

2007-05-29 Thread luis . roche
I have seeing this errors happing when I call a jsp and the backing bean is not instantiated by JSF, meaning, it wasn't defined in my faces config xml. Luis -- Original message -- From: sandipp [EMAIL PROTECTED] Hi , Do you have any idea/clue why its not

Re: Why do managed beans must implement the Serializable interface

2007-05-29 Thread David Delbecq
That's strange, could you tell us where the serialization comes from? Are you using clientside state saving mecanism? You managed properties looks good to me, and if serialization occurs under the control of JSF, the unserialized B and the unserialized A.b should be the same (same value *and* same

RE: Orchestra vs Spring-Annotations

2007-05-29 Thread Beelen, Marco
Done: Issues MYFACES-1654 and MYFACES-1655 created. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matthias Wessendorf Sent: dinsdag 29 mei 2007 14:29 To: MyFaces Discussion Subject: Re: Orchestra vs Spring-Annotations yes, open issue(s), to ensure we

This code works in all other browsers than Firefox, why?

2007-05-29 Thread Bjørn T Johansen
!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head script type=text/javascript src=/nibstoreweb/faces/myFacesExtensionResource/org.apache.myfaces.renderkit.html.util.MyFacesResourceLoader/11804471/navmenu.jscookmenu.HtmlJSCookMenuRenderer/JSCookMenu.js!--

[Trinidad] Weblogic + Debug

2007-05-29 Thread Francisco Passos
Good afternoon. I'm developing an application with Trinidad on Weblogic Application Server 9.2. It works fine in normal circumstances, but whenever I start weblogic in debug mode (to attach by socket in Eclipse), pages cease to render and this error is presented instead. Error 500--Internal

Re: This code works in all other browsers than Firefox, why?

2007-05-29 Thread Bruno Aranda
Are you getting any javascript error? Can you give it a shot with firebug (useful firefox plugin). Maybe you can see what is happening... Cheers, Bruno On 29/05/07, Bjørn T Johansen [EMAIL PROTECTED] wrote: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head

Re: [Trinidad] Weblogic + Debug

2007-05-29 Thread Francisco Passos
(Accidentally depressed 'Send') Is this a known problem? I didn't find references to any problems regarding AssertionErrors in Weblogic. Francisco Passos On 5/29/07, Francisco Passos [EMAIL PROTECTED] wrote: Good afternoon. I'm developing an application with Trinidad on Weblogic Application

Re: [COMMUNITY] Ernst Fastl - Committer

2007-05-29 Thread Grant Smith
Welcome Ernst ! On 5/29/07, Mario Ivankovits [EMAIL PROTECTED] wrote: Hi! Thanks Ernst, and welcome to the team! Welcome on board! Ciao, Mario -- Grant Smith

Re: [COMMUNITY] Ernst Fastl - Committer

2007-05-29 Thread Cagatay Civici
Congrats Ernst, Welcome! Cagatay On 5/29/07, Grant Smith [EMAIL PROTECTED] wrote: Welcome Ernst ! On 5/29/07, Mario Ivankovits [EMAIL PROTECTED] wrote: Hi! Thanks Ernst, and welcome to the team! Welcome on board! Ciao, Mario -- Grant Smith

Re: [Trinidad] PPR - getting full page refresh instead of partialrefresh

2007-05-29 Thread Brian Smith
I don't think so Adam. I recreated the error and did a search of the server log for autosubmit and turned up nothing. I am running JBoss 4.0.3+Facelets1.1.11+MyFaces 1.1.3+Trinidad 1.0 On 5/28/07, Adam Winer [EMAIL PROTECTED] wrote: Was there at least a warning message logged saying that

Re: [Trinidad] Weblogic + Debug

2007-05-29 Thread Adam Winer
Looks like a (minor) bug in Trinidad. Code should be clearing RenderingContext.setCurrentClientId() but isn't, and the assert is catching that. We should be running our tests with asserts enabled, IMO, which I think would have caught this particular problem. -- Adam On 5/29/07, Francisco

Re: [TRINIDAD] Portlets and Trinidad

2007-05-29 Thread Martin Marinschek
@Scott: If there is any link to some documentation somewhere - could you possibly send this link over to me? I'd take care of interlinking this documentation better with the Trinidad website then. regards, Martin On 5/29/07, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Jeanne, that all

Please unsubscribe me

2007-05-29 Thread Rebecca . Peltz
I tried to unsbuscribe using the links on the web site and if failes twice. Hi. This is the qmail-send program at apache.org. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't work out. [EMAIL PROTECTED]:

Re: [COMMUNITY] Ernst Fastl - Committer

2007-05-29 Thread Martin Marinschek
Welcome Ernst! regards, Martin On 5/29/07, Cagatay Civici [EMAIL PROTECTED] wrote: Congrats Ernst, Welcome! Cagatay On 5/29/07, Grant Smith [EMAIL PROTECTED] wrote: Welcome Ernst ! On 5/29/07, Mario Ivankovits [EMAIL PROTECTED] wrote: Hi! Thanks Ernst, and welcome to the team!

Re: [TRINIDAD] Portlets and Trinidad

2007-05-29 Thread Martin Marinschek
Hi Jeanne, that all sounds as if Trinidad should basically work in portlets without special ado? How would the resources be loaded in portlets? regards, Martin On 5/28/07, Jeanne Waldman [EMAIL PROTECTED] wrote: Scott O'Bryan is working on the aspects of portals that you are asking about. I

Re: [Trinidad] PPR - getting full page refresh instead of partialrefresh

2007-05-29 Thread Adam Winer
Hrm. This is a pretty big usability issue in Facelets. -- Adam On 5/29/07, Brian Smith [EMAIL PROTECTED] wrote: I don't think so Adam. I recreated the error and did a search of the server log for autosubmit and turned up nothing. I am running JBoss 4.0.3+Facelets1.1.11+MyFaces

Re: [Tomahawk] t:dataTable with dynamic columns

2007-05-29 Thread Mike Kienenberger
Well, if the table isn't being rendered, there's only two reasonable possibilities. 1) your rendered condition is false 2) your backing list (value attribute target) is empty. You should be able to check both of these situations by outputing the contents of both attributes with h:outputText

Re: [Trinidad] m1-incubating - 1.0.1 SNAPSHOT changes

2007-05-29 Thread Adam Winer
Can someone provide a minimal page that is failing for them? I'd like to get this debugged and eliminated by 1.0.1, but haven't reproduced it yet. -- Adam On 5/29/07, Henk Vanhoe [EMAIL PROTECTED] wrote: I had the same problem. It went away when I added

Re: [Trinidad] PPR - getting full page refresh instead of partialrefresh

2007-05-29 Thread Martin Marinschek
AFAI have seen, Facelet logs warnings on unknown attribute names. regards, Martin On 5/29/07, Adam Winer [EMAIL PROTECTED] wrote: Hrm. This is a pretty big usability issue in Facelets. -- Adam On 5/29/07, Brian Smith [EMAIL PROTECTED] wrote: I don't think so Adam. I recreated the error