Re: [TOMAHAWK] modalWindow

2008-06-05 Thread Mario Ivankovits
Hi Kito! Two questions: (1) How well does the Tomahawk sandbox modalWindow work, and (2) has anyone tried using it with RichFaces? (Their modal window is pretty buggy.) Well, I use modalWindow and ... let's say, it works. I use in the special mode where another view will be rendered within

[TRINIDAD] tr:table rowSelection by clicking anywhere on the row also highlight row if mouseover

2008-06-05 Thread Piekorz Martin
Hello @ all, Trying to get something like this: On the left a table containing name and first name of persons On the right a table containing some details of the selected person If my mouse enters a row of the persons table, I want to highlight this row (by changing background in css). If I

Re: [Trinidad] How to change the first day of week in an tr:inputDate

2008-06-05 Thread Rafa Pérez
Hi Simon, I have been searching the related issue (TRINIDAD-634) and changing the code to make it work properly. I would like to attach a patch, but I have never done it before. How can I create it? Should I attach it directly to JIRA? Regards, -- Rafa On Tue, Jun 3, 2008 at 7:05 PM, Simon

Re: [Trinidad] How to change the first day of week in an tr:inputDate

2008-06-05 Thread Matthias Wessendorf
Hi, On Thu, Jun 5, 2008 at 2:29 PM, Rafa Pérez [EMAIL PROTECTED] wrote: Hi Simon, I have been searching the related issue (TRINIDAD-634) and changing the code to make it work properly. I would like to attach a patch, but I have never done it before. How can I create it? Should I attach it

Re: [Trinidad] How to change the first day of week in an tr:inputDate

2008-06-05 Thread Rafa Pérez
Patch added. On Thu, Jun 5, 2008 at 2:37 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: Hi, On Thu, Jun 5, 2008 at 2:29 PM, Rafa Pérez [EMAIL PROTECTED] wrote: Hi Simon, I have been searching the related issue (TRINIDAD-634) and changing the code to make it work properly. I would like to

[Tomahawk] t:stylesheet renders link to an empty page

2008-06-05 Thread R. Müller
Hi, I've just tested my webapp in different tomcat-versions. So i've tested : tomcat-5.0.27 tomcat-5.5.20 tomcat-5.5.24 tomcat-6.0.16 So far everything works fine, but on tomcat-5.5.24 and tomcat-6.0.16 the link rendered by t:stylesheet links to an empty page, and so the page is not styled.

Re: [Trinidad] How to change the first day of week in an tr:inputDate

2008-06-05 Thread Matthias Wessendorf
saw that. will check the patch soon. Thanks! On Thu, Jun 5, 2008 at 4:02 PM, Rafa Pérez [EMAIL PROTECTED] wrote: Patch added. On Thu, Jun 5, 2008 at 2:37 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: Hi, On Thu, Jun 5, 2008 at 2:29 PM, Rafa Pérez [EMAIL PROTECTED] wrote: Hi Simon, I

Re: [Trinidad] How to change the first day of week in an tr:inputDate

2008-06-05 Thread Rafa Pérez
Nice to help, only hope it works ok!! :D On Thu, Jun 5, 2008 at 4:40 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: saw that. will check the patch soon. Thanks! On Thu, Jun 5, 2008 at 4:02 PM, Rafa Pérez [EMAIL PROTECTED] wrote: Patch added. On Thu, Jun 5, 2008 at 2:37 PM, Matthias

[Trinidad] Skinning panelPage navigation facets

2008-06-05 Thread Gerard Donnelly
Hi All, I'm using the XMLMenuModel and displaying it via the facets in panelPage. It's a 2 level menu and it would be great to have both aligned on the left of the page, each on a single line (using hint=buttons). It seems I can use navigation2 facet for one of the two levels - but not

Re: [Trinidad] How to change the first day of week in an tr:inputDate

2008-06-05 Thread Matthias Wessendorf
On Thu, Jun 5, 2008 at 4:45 PM, Rafa Pérez [EMAIL PROTECTED] wrote: Nice to help, only hope it works ok!! :D I think, testing helps ;-) On Thu, Jun 5, 2008 at 4:40 PM, Matthias Wessendorf [EMAIL PROTECTED] wrote: saw that. will check the patch soon. Thanks! On Thu, Jun 5, 2008 at 4:02

Re: [Tomahawk] t:stylesheet renders link to an empty page

2008-06-05 Thread R. Müller
just tested tomcat-5.5.23 and everything works fine there. is there any myfaces / tomahawk related change between tomcat 5.5.23 and 5.5.24 ? regards Ronald R. Müller schrieb: Hi, I've just tested my webapp in different tomcat-versions. So i've tested : tomcat-5.0.27 tomcat-5.5.20

[Trinidad] polling problem with dialogs

2008-06-05 Thread Perkins, Nate-P63196
I'm using 1.0.3 and I have 2 pages which both use the tr:poll on a main page and which both launch dialogs of some sort. The first page uses the 'normal' dialog setup of using an 'dialog:*' action and using a LaunchEvent to populate the pageflow scope with any data I need. The second page

Re: [Tomahawk] t:stylesheet renders link to an empty page

2008-06-05 Thread Leonardo Uribe
Hi The problem is in the latest tomcat (the code that open the file and loads the stylesheet does not work, and this code was not changed recently, but there was a related change on tomcat), and is also on jetty. I'm looking for a solution. regards Leonardo Uribe On Thu, Jun 5, 2008 at 10:17

Re: [TRINIDAD] tr:table rowSelection by clicking anywhere on the row also highlight row if mouseover

2008-06-05 Thread Zigc Junk
I guess you have to implement it with javascript. The bottom line is that trinidad will eventually render all components in html. To do what you described, you will have to hook up the onclick, etc. with javascript code. Another option is to use the detail facet. With that, you can click on a

Accessing to back bean updated values

2008-06-05 Thread Nuno Sousa
Hi, For now, I'm just trying to alert a bean value in an onClick event associated with an inputText. [b]On my backbean i have defined my HtmlInputText with the event:[/b] [code]inputText.setOnclick(jsFunction(););[/code] [b]On my xhtml page i have defined my javascript function accessing

Re: Accessing to back bean updated values

2008-06-05 Thread Richard Yee
Nuno, As someone else mentioned before, the EL expression gets evaluated on the server and the JavaScript gets processed on the browser. Therefore, the value that you are displaying is whatever was on the server when the page was rendered. Why don't you just put a commandButton on the page