Re: [myfaces][tomahawk] t:column sortPropertyName

2009-09-16 Thread Guy Bashan
Anyone about this issue? A way of override it? On Tue, Sep 15, 2009 at 5:14 PM, Guy Bashan guy.bas...@gmail.com wrote: Hi, I have this column: t:column headerstyle=text-align:left; style=text-align:left; id=name sortPropertyName=campaign.campaignName f:facet name=header

Re: Myfaces Display database contents

2009-09-16 Thread Werner Punz
ms...@gre.ac.uk schrieb: I have copied the example on (http://www.roseindia.net/jsf/data.shtml) and the data.jsp shows no result. Does anyone know why ? Ok at a quick first look I noticed that the example basically swallows database errors (there is a sysout statement) and then delivers an

Re: Simple faces display page

2009-09-16 Thread ms953
Quoting Richard Yee richard.k@gmail.com: Cheers Richard, you woul be amazed how much difference changing the case made. However now i get the contents but not all _ the table +-+---+-+ | UID | NAME | PASS

Re: [Orchestra] Multiple instances of beans created on every request

2009-09-16 Thread Werner Punz
Seems like a setup issue to me, do you have the conversationContext parameter in your urls? Do you have the orchestra filters set in your web.xml? Werner RAJ RAJENDRAN schrieb: Bump. Can anyone please offer any advice on this? On Tue, Sep 8, 2009 at 10:55 AM, Raj Rajendran

HtmlSelectOneMenu value not set

2009-09-16 Thread domincb
Hi I tried to read a value from an HtmlSelectOne and I could not get. The jsp is build programmatically and this is the code of the class that generate the html code: HtmlSelectOneListbox combo = (HtmlSelectOneListbox) panel.getChildren().get(2); String bind =

Question regarding t:panelTabbedPane/t:panelTab and tab change

2009-09-16 Thread Torger Kielland
Hi! I have a t:panelTabbedPane with several tabs (t:panelTab) in one of my pages, and when you open one (or any) of them I want to run a little JavaScript snippet. The problem is that the onclick-attribute (and it's likes) on t:panelTabbedPane is triggered not only when a tab is opened, but

Unsubscribe

2009-09-16 Thread Carsten Kaiser
-- Carsten Kaiser Principal Consultant mailto:carsten.kai...@valtech.de Mobile: +49 170 5270206 Valtech GmbH Werner-Heisenberg-Straße 2 63263 Neu-Isenburg Germany Phone: +49 6102 88468-0 Fax: +49 6102 88468-28 http://www.valtech.de Geschäftsführer: Ingo Kriescher Amtsgericht Düsseldorf

Re: [myfaces][tomahawk] t:column sortPropertyName

2009-09-16 Thread Torger Kielland
Hi Guy! Would you not need to put 'sortable=true' in the column tag? Also, when you use the commandSortHeader tag then why not put the sort property name there instead (in the propertyName attribute)? Simplified to show what I mean: t:column sortable=true f:facet name=header

Re: Unsubscribe

2009-09-16 Thread Matthias Wessendorf
find information on howto unsubscribe: http://myfaces.apache.org/mail-lists.html 2009/9/16 Carsten Kaiser carsten.kai...@valtech.de: -- Carsten Kaiser Principal Consultant mailto:carsten.kai...@valtech.de Mobile: +49 170 5270206 Valtech GmbH Werner-Heisenberg-Straße 2 63263 Neu-Isenburg

Re: Simple faces display page

2009-09-16 Thread Richard Yee
Are you using a debugger? Did you check the size of the list returned by getperInfoAll()? -R On Wed, Sep 16, 2009 at 3:58 AM, ms...@gre.ac.uk wrote: Quoting Richard Yee richard.k@gmail.com: Cheers Richard, you woul be amazed how much difference changing the case made. However now i get

Re: Simple faces display page

2009-09-16 Thread Richard Yee
Remove the rows attribute from your h:dataTable tag or set it to 0 (rows=0) This is what you currently have: h:dataTable id=dt1 value=#{tableBean.perInfoAll} var=item bgcolor=#F1F1F1 border=10 cellpadding=5 cellspacing=3 rows=4 width=50% dir=LTR frame=hsides rules=all summary=This is a JSF code to

Re: Simple faces display page

2009-09-16 Thread ms953
Cheers Richard. This now works fine... however when i try to use the table from the woodstock basic the table shows two of everything. as below : (the standard table works fine) __ Unique Id Unique Id UserName

Re: Simple faces display page

2009-09-16 Thread Richard Yee
Each time you refresh the page, you are adding the rows again to the existing list in getPerInfoAll. You should put the assignment of perInfoAll = new ArrayList() inside the method instead of at the class level. -R On Wed, Sep 16, 2009 at 5:36 PM, ms...@gre.ac.uk wrote: Cheers Richard. This