Re: panelBox and simple skin

2006-10-31 Thread Simon Lessard
Hello again, I thought about a 4) last night for this, I could also import af|panelBox::body in the 4 selectors, basically using it as an alias. Is it reasonable? On 10/30/06, Simon Lessard [EMAIL PROTECTED] wrote: Yes we got one. I'll add the issue a bit later tonight. On 10/30/06, Adam

Re: Re: Re: TreeTable focusRowKey

2006-10-31 Thread Kamran Kashanian
A quick look at the UIXTreeTable code indicates that a non-null focusRowKey is assumed during decoding. During decoding, UIXTreeTable bails out with code like this: Object path = getFocusRowKey(); if (path == null) { // no data in this TreeTable return; } if a

Re: Re: Re: TreeTable focusRowKey

2006-10-31 Thread Kamran Kashanian
Actually, in my case, #1 below will only help if I do my own decoding and do not assume a non-null focusRowKey during decode. On 10/31/06, Kamran Kashanian [EMAIL PROTECTED] wrote: A quick look at the UIXTreeTable code indicates that a non-null focusRowKey is assumed during decoding. During

Re: Re: Re: TreeTable focusRowKey

2006-10-31 Thread Adam Winer
I think #2 should be the immediate solution, not the long-term change. -- Adam On 10/31/06, Kamran Kashanian [EMAIL PROTECTED] wrote: Actually, in my case, #1 below will only help if I do my own decoding and do not assume a non-null focusRowKey during decode. On 10/31/06, Kamran Kashanian

Re: panelBox and simple skin

2006-10-31 Thread Jeanne Waldman
Hi Simon, I just read this thread, and I was going to suggest using an alias. I think your idea is fine. - Jeanne Simon Lessard wrote: Hello again, I thought about a 4) last night for this, I could also import af|panelBox::body in the 4 selectors, basically using it as an alias. Is it

Rebranched JSF 1.2 codebase

2006-10-31 Thread Adam Winer
A new JSF 1.2 codebase of Trinidad is available at: http://svn.apache.org/repos/asf/incubator/adffaces/branches/faces-1_2-061031 I'm thinking that instead of doing svn mv to move these re-branches back to faces-1_2, that I might be better off making faces-1_2 an external that points at the

SVN Externals (was Re: Rebranched JSF 1.2 codebase)

2006-10-31 Thread Matthias Wessendorf
for myfaces, shale (and struts? (I bet!)) Wendy is doing that, I changed the subject to get her attention on that here :) Perhaps she has some points or can help out here. :) (note, that any existing myfaces committer can be added to the adffaces unix group at any time) -M On 10/31/06, Adam

Re: Re: Re: TreeTable focusRowKey

2006-10-31 Thread Arjuna Wijeyekoon
hmm, We need to be careful not to break the UIXMenu hierarchy of components which use a focusRowKey coming from the MenuModel. But I think we can do #2 without too much of a problem. We should still do part of #1, which is move the defaulting to the Renderer. --arjuna On 10/31/06, Kamran