Re:Re: [trinidad]TreeTable cannot be collapsed or focused

2010-06-24 Thread Macroth Tao
Hi, Max. Thanks for your reply. I didn't try IE7 or IE8 because Trinidad website lists only IE6 (http://myfaces.apache.org/trinidad/browsers.html). But the problem remains in Mozilla Firefox 3.5.3. In web.xml, there used to be a 'context-param' like: org.apache.myfaces.trinidad.A

Re: [trinidad]TreeTable cannot be collapsed or selected

2010-06-24 Thread Max Starets
Does it work in other browsers including later versions of IE? Max ?? ?? wrote: Hi,all: I've been writing a trinidad application on GlassFish v3, and testing it with Microsoft IE6. When I was using a TreeTable, it could be rendered on the page and its data was shown correctly. But it cou

Re: Trinidad TreeTable

2009-12-18 Thread Jakob Korherr
>> >>e.printStackTrace(); > >> >> } > >> >>return selectedRowKeys; > >> >>} > >> >> > >> >>public void setSelectedRowKeys(RowKeySet selectedRowKeys) { > >> >>

Re: Trinidad TreeTable

2009-12-18 Thread omaji7
= selectedRowKeys; >> >>} >> >> >> >> The TreeTable tag is still the same as in the previous code version. >> >> >> >> Can you pls do me a favor to solve this problem, i m really stuck in >> it >> >> from >> >> last 4 days. :

Re: Trinidad TreeTable

2009-12-18 Thread Jakob Korherr
> >> > > >> > Hi, > >> > > >> > I wasn't familiar with tr:tree, but I tried a few scenarios and I came > >> up > >> > with this solution: > >> > > >> > public RowKeySetTreeImpl getRowKeySet() > >> &

Re: Trinidad TreeTable

2009-12-18 Thread omaji7
eySet() >> > { >> > if (rowKeySet == null) >> > { >> > rowKeySet = new RowKeySetTreeImpl(); >> > rowKeySet.setCollectionModel(getTreeModel()); >> > } >> > >> > if (getTreeM

Re: Trinidad TreeTable

2009-12-18 Thread Jakob Korherr
rowKeySet.setCollectionModel(getTreeModel()); > > } > > > > if (getTreeModel().getRowKey() != null) > > { > > List l = (List) getTreeModel().getRowKey(); > > if (l.size() == 2 && l.get(0) ==

Re: Trinidad TreeTable

2009-12-18 Thread omaji7
p; l.get(1) == 1) > { > rowKeySet.add(); > } > } > > return rowKeySet; > } > > This selects the second child of the first node in the tree. However, I > don't know if there is an easier way to do this. >

Re: Trinidad TreeTable

2009-12-18 Thread Jakob Korherr
owKeySet; } This selects the second child of the first node in the tree. However, I don't know if there is an easier way to do this. Regards, Jakob Korherr 2009/12/18 omaji7 > > Hi, > > My project is build in JSF, Hibernate and Faclets. i m using trinidad > treetable tag

Re: [Trinidad] treeTable and disclosedRowKeys

2009-12-18 Thread omaji7
Hi, My project is build in JSF, Hibernate and Faclets. i m using trinidad treetable tag to build a tree with multiselection nodes. Now i m facing a problem to initially selection of the nodes when page is loaded at the first time. i have tried alot to accomplish this task, but still unable to

Re: Trinidad TreeTable

2009-12-18 Thread omaji7
Hi, My project is build in JSF, Hibernate and Faclets. i m using trinidad treetable tag to build a tree with multiselection nodes. Now i m facing a problem to initially selection of the nodes when page is loaded at the first time. i have tried alot to accomplish this task, but still unable to

Re: [Trinidad] TreeTable fires actionListener too often

2008-08-29 Thread Christian Poecher
id's of your h:commandLink component's. I > think all commandLink has the same id's. Try to use the tr:commandLink. > Then the problem should be away. > > -- View this message in context: http://www.nabble.com/-Trinidad--TreeTable-fires-actionListener-too-often-tp19218

Re: [Trinidad] TreeTable fires actionListener too often

2008-08-29 Thread Michael Meierhoff
Hallo, take a look at the generated id's of your h:commandLink component's. I think all commandLink has the same id's. Try to use the tr:commandLink. Then the problem should be away. Greetings Michael Meierhoff Christian Poecher schrieb: Hi there, I introduced the trinidad components (1

[Trinidad] TreeTable fires actionListener too often

2008-08-29 Thread Christian Poecher
y the slaBean.selectSla method is called as often as the displayed number of rows. In case of my development envioronment that is 83 times, in production probably more often. Can someone enlighten me, what I am doing wrong here? TIA, Chris -- View this message in context: http://www.nabble.com/-Tri

[Trinidad] treeTable detailStamp

2008-07-02 Thread Mathias Walter
Hi, is there any way to get a tr:table detailStamp like behaviour in a tr:treeTable? -- Kind regards, Mathias

Re: [Trinidad] treeTable: Navigation fails when rootNodeRendered="false"

2008-04-23 Thread Dirk Krummacker
Andrew, thanks for your quick response. I have opened a JIRA issue for this: https://issues.apache.org/jira/browse/TRINIDAD-1055 To answer your question: No, the behavior is the same if the action method is moved from the row object to the bean. Meanwhile I also found out that specifying 'initia

Re: [Trinidad] treeTable: Navigation fails when rootNodeRendered="false"

2008-04-22 Thread Andrew Robinson
You can probably file a bug. Out of curiosity, does it work if your action method is on a bean and not a node? -Andrew On Tue, Apr 22, 2008 at 9:58 AM, Dirk Krummacker <[EMAIL PROTECTED]> wrote: > I have a simple JSP page with only a commandButton and a treeTable. > The commandButton is wired t

[Trinidad] treeTable: Navigation fails when rootNodeRendered="false"

2008-04-22 Thread Dirk Krummacker
I have a simple JSP page with only a commandButton and a treeTable. The commandButton is wired to an action listener method that populates a list with nodes and places it into page flow scope. This node list serves as the treeTable's model. There is a column in the treeTable displaying a commandLin

Re: Trinidad TreeTable behavior

2008-03-25 Thread floor
I decided to write some code to test this issue easily and found that the issue pops up with surprisingly little data. My test code follows... Please note that I haven't made sure I have the latest version yet I will do that soon. testTreeTable.jsp-

Trinidad TreeTable behavior

2008-03-25 Thread floor
I am using the Trinidad Tree component and recently ran into an issue. Once we began testing with large data sets, the tree's Expand All feature quit working. At first, I thought that there must be something wrong with my data or something, but then I found this in the developer guide: "If t

[Trinidad] TreeTable focusRowKey not set

2008-02-09 Thread Maik77
search the results are shown. Each result is a link with a action. In this method I set the new focus. But the focus is not set in the treeTable (getter from my method to set the focusRowKey is not called again). http://www.nabble.com/-Trinidad--TreeTable-focusRowKey-not-set-tp15372941p15372941.html Sen

[Trinidad] treeTable and disclosedRowKeys

2007-12-07 Thread Rottstock, Sven
Hi, i have a strange behaviour with the treeTable and the disclosedRowKeys. In detail i want to expand specific nodes programaticaly and this should be the initial state of the treeTable. This works fine for the first render time. Now the trouble: In the action facet i have a commandLink that shou

Re: [Trinidad] treeTable colum type - depending on dynamic data returned.

2007-11-06 Thread Ray Clough
gewater Office Park, Edgewater Rd, Belfast, BT3 9JQ. > For more information on the AMT-SYBEX Group visit http://www.amt-sybex.com > _ > > -- View this message in context: http://www.nabble.com/-Trinidad--treeTable-colum-type---depending-on-dynamic-data-returned.-tf3983438.html#a13616047 Sent from the MyFaces - Users mailing list archive at Nabble.com.

Re: [Trinidad] TreeTable Skinning Options?

2007-10-16 Thread Chris Hane
d Engle [mailto:[EMAIL PROTECTED] Sent: Monday, October 15, 2007 4:12 PM To: MyFaces Discussion Subject: RE: [Trinidad] TreeTable Skinning Options? Chris, I found this posting and was able to conditionally set the visibility for the checkboxes -- it was a great help and only took about 10 minut

RE: [Trinidad] TreeTable Skinning Options?

2007-10-15 Thread Todd Engle
Discussion Subject: RE: [Trinidad] TreeTable Skinning Options? Chris, I found this posting and was able to conditionally set the visibility for the checkboxes -- it was a great help and only took about 10 minutes to implement: http://mail-archives.apache.org/mod_mbox/incubator-adffaces-user/200612

RE: [Trinidad] TreeTable Skinning Options?

2007-10-15 Thread Todd Engle
Incorrect URL in last post -- here is the correct one: -Original Message- From: Todd Engle [mailto:[EMAIL PROTECTED] Sent: Monday, October 15, 2007 4:12 PM To: MyFaces Discussion Subject: RE: [Trinidad] TreeTable Skinning Options? Chris, I found this posting and was able to

RE: [Trinidad] TreeTable Skinning Options?

2007-10-15 Thread Todd Engle
- From: Chris Hane [mailto:[EMAIL PROTECTED] Sent: Friday, October 12, 2007 2:30 AM To: MyFaces Discussion Subject: Re: [Trinidad] TreeTable Skinning Options? Cristi - thanks for the info on setting the "children" property to null and not just empty. That did the trick for my quest

Re: [Trinidad] TreeTable Skinning Options?

2007-10-12 Thread Tobias Kilian
Chris Hane schrieb: Cristi - thanks for the info on setting the "children" property to null and not just empty. That did the trick for my question #3. 1) Can the "Select All | Select None" be turned off and not show in the table header? Hi chris! maybe you could use style.display="none" t

Re: [Trinidad] TreeTable Skinning Options?

2007-10-11 Thread Chris Hane
Cristi - thanks for the info on setting the "children" property to null and not just empty. That did the trick for my question #3. 1) Can the "Select All | Select None" be turned off and not show in the table header? > 1. it's probably related to using rowSelection="multiple" > if you don't

Re: [Trinidad] TreeTable Skinning Options?

2007-10-11 Thread Cristi Toth
Hi Chris, 1. it's probably related to using rowSelection="multiple" if you don't specify that, the links will not be rendererd 3. the model it's a tree, so the leafs don't have the expand/collapse icon rendered BUT for a node to be a leaf it has to have the 'children' property set to null (not an

[Trinidad] TreeTable Skinning Options?

2007-10-11 Thread Chris Hane
Is it possible to do any of the following with the TreeTable component. 1) Can the "Select All | Select None" be turned off and not show in the table header? 2) Is it possible to have a "select" checkbox appear for only SOME rows? I have a list of libraries and each library has a list of d

RE: [Trinidad] treeTable dynamic rowSelection

2007-09-18 Thread Andrew Richards
PROTECTED] Sent: 17 September 2007 16:59 To: MyFaces Discussion Subject: Re: [Trinidad] treeTable dynamic rowSelection Hi Andrew, I doubt that you can control row selection at row level. What you can do just add some commandNavigationItem in each row that will call an action event. On that eve

Re: [Trinidad] treeTable dynamic rowSelection

2007-09-17 Thread Abhi
also. Now you can control rendering of this commandNavigationItem based on some condition. The condition can be if getChildren return empty array, it's a child node. ~Abhishek On 9/17/07, Andrew Richards <[EMAIL PROTECTED]> wrote: > > Hello all, > > I have a Trinidad treeT

[Trinidad] treeTable dynamic rowSelection

2007-09-17 Thread Andrew Richards
Hello all, I have a Trinidad treeTable with row selection set to single as follows... I have a hierarchy of nested beans which has a getChildren method to allow me to show a hierarchy of child rows. Is there any way I can say row selection is only possible on the child rows? i.e

Re: [Trinidad] TreeTable - expand all.

2007-09-06 Thread venkata guddanti
OTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of > Matthias Wessendorf > Sent: 06 September 2007 11:34 > To: MyFaces Discussion > Subject: Re: [Trinidad] TreeTable - expand all. > > ** This Message Originated From The Internet Please Be Aware Of > Suspicious Attachments And Co

RE: [Trinidad] TreeTable - expand all.

2007-09-06 Thread Darren McEntee
lf Of Matthias Wessendorf Sent: 06 September 2007 11:34 To: MyFaces Discussion Subject: Re: [Trinidad] TreeTable - expand all. ** This Message Originated From The Internet Please Be Aware Of Suspicious Attachments And Content ** not really sure on this. Question: have you tried something in

Re: [Trinidad] TreeTable - expand all.

2007-09-06 Thread Matthias Wessendorf
not really sure on this. Question: have you tried something in this directions? What are the errors you are seeing ? thx, Matthias On 9/5/07, Darren McEntee <[EMAIL PROTECTED]> wrote: > > > > > > Hi all, > > > > I've a quick question regarding the tr:treeTable component. > > What I want too do i

RE: [Trinidad] TreeTable - expand all.

2007-09-05 Thread Darren McEntee
Anyone know about this? Thanks. Sent: 05 September 2007 10:31 To: MyFaces Discussion Subject: [Trinidad] TreeTable - expand all. Hi all, I've a quick question regarding the tr:treeTable component. What I want too do is have the option fo

[Trinidad] TreeTable - expand all.

2007-09-05 Thread Darren McEntee
Hi all, I've a quick question regarding the tr:treeTable component. What I want too do is have the option for the treeTable to be expanded by default on specific pages on initial page loading. I see in the treeTable has the expandAllEnabled attribute which decides whether the Expand All & Col

Re: rowBandingInterval not working with Trinidad treeTable

2007-08-14 Thread Carsten Pieper
>>> >>> >>> >>> >>> >>> >>> >>> >>> and I have this in my css: >>> >>> .AFTableCellDataBackgroundColor:alias { >>> background-color: red !important; >>> } >>> .AFTableCellDataBandedBackgroundColor:alias { >>> background-color: green !important; >>> } >>> >>> yet I am not seeing anything reflected in the page rendering. Is there >>> short answer to what the heck I'm doing wrong? Let me know if you need >>> any other information if you can help and thanks in advance. >>> >> >> > > -- View this message in context: http://www.nabble.com/rowBandingInterval-not-working-with-Trinidad-treeTable-tf4264259.html#a12157092 Sent from the MyFaces - Users mailing list archive at Nabble.com.

Re: rowBandingInterval not working with Trinidad treeTable

2007-08-14 Thread dougthug
gt;> >> >> >> >> >> >> and I have this in my css: >> >> .AFTableCellDataBackgroundColor:alias { >> background-color: red !important; >> } >> .AFTableCellDataBandedBackgrou

Re: rowBandingInterval not working with Trinidad treeTable

2007-08-13 Thread Carsten Pieper
color: red !important; > } > .AFTableCellDataBandedBackgroundColor:alias { > background-color: green !important; > } > > yet I am not seeing anything reflected in the page rendering. Is there > short answer to what the heck I'm doing wrong? Let me know if you need >

rowBandingInterval not working with Trinidad treeTable

2007-08-13 Thread dougthug
other information if you can help and thanks in advance. -- View this message in context: http://www.nabble.com/rowBandingInterval-not-working-with-Trinidad-treeTable-tf4264259.html#a12135913 Sent from the MyFaces - Users mailing list archive at Nabble.com.

[Trinidad] treeTable colum type - depending on dynamic data returned.

2007-06-26 Thread Darren McEntee
Hi there, I'm looking for a way to implement the following in Trinidad. Using the tr:treeTable component I want to be able to dynamically specify what columns a will be set, if the data returned is a date/time result. For example, I have a treeTable facelet with a columns that return d

[Trinidad] treeTable select

2007-06-18 Thread Darren McEntee
Hi, In the Trinidad component, when using this with rowBanding enabled and also rowSelection being single, is it possible to get the selected table row to be highlighted, so that row stands out from the rested of the records? I don't see this in the docs. Any info appreciated. Thanks, Da

[Trinidad] treeTable data display (xml)

2007-06-15 Thread Darren McEntee
Hi guys, I'm quite new to Trinidad and experimenting with its functionality. I'm looking for information on two things really... (1). I'm trying out the tr:treeTable Trinidad component. I'm interested in a finding a way to get it to read the structure of an XML file and display the structur

Re: Displaying totals in Trinidad TreeTable

2006-09-16 Thread Wendy Smoak
On 9/16/06, Naresh Bhatia <[EMAIL PROTECTED]> wrote: Is there a Trinidad users list? I could only find this one at http://myfaces.apache.org/mail-lists.html. Trinidad has not yet become part of MyFaces-- it's still in the incubator. Here's the project website: http://incubator.apache.org/adff

RE: Displaying totals in Trinidad TreeTable

2006-09-16 Thread Naresh Bhatia
TreeTable Hi, do you have already asked this question on the trinidad user list? It may be a better place to get information on a solution for this kind of problem. cheers, Gerald On 9/16/06, Naresh Bhatia <[EMAIL PROTECTED]> wrote: > > > > I am looking for ideas on how to e

Re: Displaying totals in Trinidad TreeTable

2006-09-16 Thread Gerald Müllan
Hi, do you have already asked this question on the trinidad user list? It may be a better place to get information on a solution for this kind of problem. cheers, Gerald On 9/16/06, Naresh Bhatia <[EMAIL PROTECTED]> wrote: I am looking for ideas on how to extend the Trinidad TreeTa

Displaying totals in Trinidad TreeTable

2006-09-15 Thread Naresh Bhatia
Title: Displaying totals in Trinidad TreeTable I am looking for ideas on how to extend the Trinidad TreeTable to display totals at various levels of the hierarchy. The "total" rows should look distinct from others, so they need to have different styling. Would such TotalRows be

Trinidad TreeTable

2006-09-14 Thread Naresh Bhatia
Title: Trinidad TreeTable I am trying to learn the Trinidad TreeTable component. I created a standalone JSF application and copied the TreeTable example source from the demo war, along with other necessary infrastructure. I have the TreeTable up and running. The only problem is that the text