tree table

2005-08-31 Thread Claudio Tamietto
i tried to use the tree table components and all is OK but i have a lot of data and i need some sort of paging like a data table. Is there any way to obtain this behaviour ? Thanks for any answer

issue myfaces-277

2005-08-10 Thread Claudio Tamietto
the issue was closed in this way :   Resolution: Won't FixI´ve reverted the patch.Mathias Werlitz has a simple solution for this problem. Use a navigation rule which points to the same page:     /page.jsp        refresh    /page.jsp        but is accepta

Re: issue on jira

2005-08-03 Thread Claudio Tamietto
uesday, August 02, 2005 11:48 AM Subject: Re: issue on jira > Finally I found a solution for that issue. Have a look into > http://issues.apache.org/jira/browse/MYFACES-277 if you wants to know > the details. > Try out the current svn version or wait for the next nightly. > >

Re: issue on jira

2005-08-02 Thread Claudio Tamietto
ightly? We have changed implementation of > the datatable which probably fixes your problem. > > Regards, > Mathias > > Claudio Tamietto schrieb: > > about two months ago i opened this issue on Jira : > > > > i'm using a form that contain a dataTable component

issue on jira

2005-08-02 Thread Claudio Tamietto
about two months ago i opened this issue on Jira : i'm using a form that contain a dataTable component . There is also a button that modify the model of the table with an array of only one element with the single fields initialized to "" (String fields) and has the attribute immediate set to true.

Re: facelets

2005-08-01 Thread Claudio Tamietto
g/~matzew/myfacesFacelets.war HTH, Matthias On 8/1/05, Claudio Tamietto <[EMAIL PROTECTED]> wrote: > i would like to use facelets with myfaces but i don't know if it is > compatible and how to setup it . > Thanks for any answer . > > > -- Matthias Wessendorf

facelets

2005-08-01 Thread Claudio Tamietto
i would like to use facelets with myfaces but i don't know if it is compatible and how to setup it . Thanks for any answer .

Re: dinamic order of rendering of columns in data table

2005-06-28 Thread Claudio Tamietto
umns in data table My example simply shows how to construct a DataTable with an ordered collection, so when data is painted for each row, it will be ordered. What do you really need then? 2005/6/28, Claudio Tamietto <[EMAIL PROTECTED]>: > > i'm sorry but i don't undes

Re: dinamic order of rendering of columns in data table

2005-06-28 Thread Claudio Tamietto
ndered attribute > > of the column component. > > You may also try to use the x:columns component of myfaces. > > > > Mathias > > > > -Original Message- > > From: Claudio Tamietto [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, June 28, 2005 4:14 P

Re: dinamic order of rendering of columns in data table

2005-06-28 Thread Claudio Tamietto
Get the collection. List mylist = DoSomethingToGetTheListMethod(); // Order the collection (maybe using a Comparator). Collections.sort(mylist, new ComparatorIfApplicable()); return mylist; } 2005/6/28, Claudio Tamietto <[EMAIL PROTECTED]>: > > for dynamic rendering i mean this : > I have a tab

Re: dinamic order of rendering of columns in data table

2005-06-28 Thread Claudio Tamietto
cosa vuoi fare?)     From: Claudio Tamietto [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 28, 2005 3:57 PMTo: MyFaces DiscussionSubject: dinamic order of rendering of columns in data table is it possibile rendering the columns of a table in a dinamic way  or i have to cre

dinamic order of rendering of columns in data table

2005-06-28 Thread Claudio Tamietto
is it possibile rendering the columns of a table in a dinamic way  or i have to create a new component and subclass it ?

Re: initialize a mangaged bean in application scope at applicationstartup

2005-06-08 Thread Claudio Tamietto
uot;sessionDestroyed(): Ending"); } } faces-config.xml stationList com.m2g.stationtools.web.faces.model.StationList ... Cheers, -Steve On 6/8/05, Claudio Tamietto <[EMAIL PROTECTED]> wrote: > > if i undestand your answer i have to subclass the class > org.apache.myfaces.webapp.StartupServletCo

Re: initialize a mangaged bean in application scope at applicationstartup

2005-06-08 Thread Claudio Tamietto
if i undestand your answer i have to subclass the class org.apache.myfaces.webapp.StartupServletContextListener and override contextInitialized. Correct ? - Original Message - From: Pierpaolo Follia To: MyFaces Discussion Sent: Tuesday, June 07, 2005 11:00 AM Subje

Re: DataTable and DataScroller Problem.

2005-06-06 Thread Claudio Tamietto
i have tried to use the data scroller with a table where i can add,delete and modify rows but the application behaves very strange so i have supposed that the data scroller is ok only for static tables. If you try to not set preserve data model and set state mainteined on the server probabl

initialize a mangaged bean in application scope at application startup

2005-06-06 Thread Claudio Tamietto
i'm tryng to use jpox and jsf and i have used a managed bean at application scope for initialize the PersistenceManagerFactory. This activity is very time consuming and start only when the first user request reference the bean. is there a way to initialize the bean at application startup and

problem with immediate on a action button

2005-06-06 Thread Claudio Tamietto
i'm trying to use jsf and jdo and i have wrote a small application when i can insert,delete,modify a dataTable. I use also a button that clear the form and leave only one row so i can use it for search . The button have immediate set to true because i don't want syntatic control on the action

Re: tiles support

2005-04-19 Thread Claudio Tamietto
.   I hope this helps.   I don’t think this should be the desired behaviour, but it is what happens currently.   Thanks   James   From: Claudio Tamietto [mailto:[EMAIL PROTECTED] Sent: 19 April 2005 12:58To: myfaces-user

tiles support

2005-04-19 Thread Claudio Tamietto
is there an effective support for tyles in  myfaces implementation ?. I posted the question because i have the following problem :   i have a first jsp page with a lot of html . At some point i include another jsp.page