RE: Problem t:datascroller does not work in shale dialog

2006-11-28 Thread mario.buonopane
I have created the SHALE-341 on JIRA for this problem: http://issues.apache.org/struts/browse/SHALE-341 and I have attached the sample that reproduce the problem. Please, help me Mario From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 27

Tree2 Navigation with iframe

2006-11-28 Thread Anthony Hong
I have a template, which left side is a tree component and right side is displaying zone. I want to render what tree node selected page in right div body zone. How can I achieve this? I to write following code in my node action method HttpServletResponse response = (HttpServletResponse)

Re: select a row

2006-11-28 Thread JS
Hi, I am getting the selected row value now. I am using javascript and valueChangelIstener to get the rowData. But it will work only if I gave the bean in session scope. Here is my code : jsp : function dataTableSelectOneRadio(radio) { var id =

[Tobago] Howto display a popup with a button

2006-11-28 Thread H. Swaczinna
Hi, I would like to display a popup panel on a button click. I tried this: tc:button label=Popup f:facet name=popup tc:popup tc:button label=Ok/ /tc:popup /f:facet /tc:button But it didn't work. There are only examples

Re: select a row

2006-11-28 Thread Gerald Müllan
Hi, use t:saveState in this case. With this component, scope of the bean will be longer than request but shorter than session. Usage: t:saveState value=#{yourBean}/ cheers, Gerald On 11/28/06, JS [EMAIL PROTECTED] wrote: Hi, I am getting the selected row value now. I am using javascript

[REMINDER] This list is subscribers only!

2006-11-28 Thread Manfred Geiler
This mail is sent from time to time and is meant to remind you, that the users@myfaces.apache.org and dev@myfaces.apache.org mailing lists - like most of the ASF lists - are subscribers only. This means that you are only allowed to post to this list if you have subscribed before. Please make

Re: select a row

2006-11-28 Thread JS
A big thank you to you Gerald. It worked for me. But, when I set the session separately in each bean object(but not all obejct) , I cannot remove it from the session. Why is that ? I used, session.removeAttribute(atrib); Gerald Müllan wrote: Hi, use t:saveState in this case. With this

Re: [Tobago] Howto display a popup with a button

2006-11-28 Thread Volker Weber
Hello Helmut, Here the simple (non ajax) version: jsp-- tc:button label=Popup action=#{bean.openPopup} f:facet name=popup tc:popup rendered=#{bean.popup} tc:button label=Ok action=#{bean.closePopup}/ /tc:popup /f:facet /tc:button /jsp--

AW: Re: [Tobago] Howto display a popup with a button

2006-11-28 Thread H. Swaczinna
Hello Volker, I didn't realize, that I have to care myself about switching the popup on and off. Now, it works. But one more question: Is it possible, to set the position of the popup relative to the button? I know, I can set the position of the popup programmaticly, but how do I get the

RE: [REMINDER] This list is subscribers only!

2006-11-28 Thread mario.buonopane
I'm very sorryi'll check! What about of my issues? Are removed? Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Manfred Geiler Sent: 28 novembre 2006 13.48 To: MyFaces Discussion; MyFaces Development Subject: [REMINDER] This list is

Re: [REMINDER] This list is subscribers only!

2006-11-28 Thread Martin Marinschek
Hi Mario, this is not a personal reminder, much more a general reminder sent out once a month. No mail and no issue has been deleted/removed/changed. regards, Martin On 11/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm very sorryi'll check! What about of my issues? Are removed?

Re: Tree2 Navigation with iframe

2006-11-28 Thread Andrew Robinson
My suggestions: 1) create outputLinks instead of commandLinks with a target specified in the tree instead of using actions -or- 2) use an AJAX framework like Ajax4Jsf and make the right side refreshed when the tree is clicked and don't use IFRAMEs -Andrew On 11/28/06, Anthony Hong [EMAIL

any one using Facelets + JSF 1.2 RI + Tomahawk here?

2006-11-28 Thread Arash Rajaeeyan
Hello I am using Facelts + Tomahawk + JSF 1.2 RI the number of components which are not working correctly or don't work at all has surprised me. to name a few inputHTML and commandNavigation2 which are very obvious components, don't work at all ! has any one had any similar problem? is there any

Tomahawk datatable issues

2006-11-28 Thread Renzo Tomaselli
Hi, I'm using myfaces.1.1.5 snapshot+tomahawk.1.1.5.snapshot+facelets 1.1.11. Component DataTable has a number of open issues affecting usability: 1. DataTable rows are not rendered with their rowIds. E.g. rowIndexVar="rowIndex" rowId="#{rowIndex}" // or any other binding does not yields

Re: Resource Bundles

2006-11-28 Thread ::SammyRulez::
an exception is thrown so standard http error 500 will work fine (web.xml error page tag) message bundle should be design time why do you need to display friendly messages to coders... detailed facelets error should be preferred 2006/11/27, Paola Attadio [EMAIL PROTECTED]: Hi All, I'm using

RE: Tomahawk datatable issues

2006-11-28 Thread Michael Heinen
2 and 4: see http://issues.apache.org/jira/browse/TOMAHAWK-102 http://issues.apache.org/jira/browse/TOMAHAWK-542 and maybe http://issues.apache.org/jira/browse/TOMAHAWK-637 Michael From: Renzo Tomaselli [mailto:[EMAIL PROTECTED] Sent: Dienstag, 28.

Stylesheet issue: defaultStyles.css returned when using Facelets

2006-11-28 Thread Romanowski, Tim
Hey guys, I thought posted this on the Facelets list thinking this was a Facelets issue, but considering the browser output below, perhaps a Tomahawk person could comment. Is anyone else having a problem using stylesheets with Facelets templates? I have a template file, template.xhtml that

Re: Tomahawk datatable issues

2006-11-28 Thread Renzo Tomaselli
Yes, both appear as a common issue related to Facelets, like for n. 1. Using Facelets on top of Tomahawk is raising quite a number of unsolved troubles. Renzo Michael Heinen wrote: 2 and 4: see http://issues.apache.org/jira/browse/TOMAHAWK-102

Action method not getting called inside the dataTable

2006-11-28 Thread Amit Nair
Hi Friends I am having trouble in calling the action method from command link inside datatable. The code of the DataTable is h:dataTable id=siteDetailTable1 value=#{siteRequirementBean.detailHeadQuarterList} var=details cellpadding=1 cellspacing=1 width=100% h:column h:panelGrid columns=1

Re: Action method not getting called inside the dataTable

2006-11-28 Thread Adrian Mitev
The bean that holds the data mode should be in session scope. 2006/11/28, Amit Nair [EMAIL PROTECTED]: Hi Friends I am having trouble in calling the action method from command link inside datatable. The code of the DataTable is h:dataTable id=siteDetailTable1

Re: Resource Bundles

2006-11-28 Thread Paola Attadio
Thanks and Regards, Paola Attadio On 11/28/06, ::SammyRulez:: [EMAIL PROTECTED] wrote: an exception is thrown so standard http error 500 will work fine (web.xml error page tag) message bundle should be design time why do you need to display friendly messages to coders... detailed facelets

RE: any one using Facelets + JSF 1.2 RI + Tomahawk here?

2006-11-28 Thread Romanowski, Tim
Hi Arash, I am developing an app using Facelets+Tomahawk+JSF 1.2+Ajax4JSF, and we did have a big problem with JSCookMenu and panelNavigation2 (we finally got rid of them). Other than that, and a stylesheet issue we're having (see my recent post on Tomahawk + Facelets templates), the Tomahawk

RE: response.Header() not working in JSF Portlet

2006-11-28 Thread Nebinger, David
Hmm, well first of all, since you're running within a portlet I'm actually surprised you're not getting class cast exceptions when casting the request and response objects to HttpServletRequest/HttpServletResponse; the portal should be ensuring that they are PortletRequest/PortletResponse

RE: Duplicate ids of some tomahawk components with portlets

2006-11-28 Thread Nebinger, David
If you're specifying IDs for components directly, you have to remember to include the portlet namespace in the generated ids. -Original Message- From: Pfau, Oliver [mailto:[EMAIL PROTECTED] Sent: Friday, November 24, 2006 3:38 AM To: MyFaces Discussion Subject: Duplicate ids of some

RE: exception handling in subclass of MyFacesGenericPortlet

2006-11-28 Thread Nebinger, David
Sure; just override the specific method(s) where you catch for an exception and implement alternative logic when you catch one. There's also the handleExceptionFromLifecycle() method which will get called when an exception is thrown; other than the Throwable that needs intercepting, though, I

RE: Disabled with value binding expression

2006-11-28 Thread Toppac
I wanted to add onto this to see if anyone could provide further insight. I am using a custom variable resolver to access some session scoped variables. I know the value is there because I can print it out. However, whenever I try to reference the value in the disabled attribute of an input

RE: Disabled with value binding expression

2006-11-28 Thread Nebinger, David
Have you tried using disabled=#{flowScope.delete.booleanValue}? -Original Message- From: Toppac [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 28, 2006 4:45 PM To: users@myfaces.apache.org Subject: RE: Disabled with value binding expression I wanted to add onto this to see

RE: Disabled with value binding expression

2006-11-28 Thread Toppac
Doesn't that break the java bean conventions? Nebinger, David wrote: Have you tried using disabled=#{flowScope.delete.booleanValue}? -Original Message- From: Toppac [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 28, 2006 4:45 PM To: users@myfaces.apache.org Subject: RE:

RE: Disabled with value binding expression

2006-11-28 Thread Nebinger, David
Probably, but if it works where the object doesn't, wouldn't that be more important than adhering to the conventions? -Original Message- From: Toppac [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 28, 2006 4:49 PM To: users@myfaces.apache.org Subject: RE: Disabled with value

How to re-position scroll bar after reloading the jsf page

2006-11-28 Thread Maria G.P [Contr]
Dear All: I have a page with datatable and the table is within t:div tag. The data table has command link. Onclick of that link, I am reloading the page. When I reload the page, I would like to show the row that was last selected. But now, it is showing the top of the table. Can anyone please

Re: Disabled with value binding expression

2006-11-28 Thread Simon Kitching
Don't know if this is relevant or not, but the standard resolver will look first in request scope, so a value there will hide any var in session scope. Regards, Simon Toppac wrote: I wanted to add onto this to see if anyone could provide further insight. I am using a custom variable resolver

Re: AW: Re: [Tobago] How to set individual styles for individual components

2006-11-28 Thread Bernd Bohmann
Hello Helmut, I didn't see any reason why this should not work. Can you add a jira issue for it. Please add some example code. http://issues.apache.org/jira/secure/BrowseProject.jspa?id=12310273 Regards Bernd H. Swaczinna wrote: Hello, I've defined my own theme and an additional

Re: Example jars

2006-11-28 Thread Marcus Bond
Great, thanks! From: Matthias Wessendorf [EMAIL PROTECTED] Reply-To: MyFaces Discussion users@myfaces.apache.org To: MyFaces Discussion users@myfaces.apache.org Subject: Re: Example jars Date: Fri, 24 Nov 2006 17:52:05 +0100 not up to date, but here:

t:dataTable with dynamic newspaperColumns

2006-11-28 Thread Yaron Spektor
Hi, I was wondering if anyone knows why the t:dataTable does not accept a backing bean value for the newspaperColumns value-binding? Where this example works (4 columns): t:dataTable newspaperColumns=4 newspaperOrientation=horizontal value=#{bean.valueList} var=index h:column

t:popup component launch from keypress

2006-11-28 Thread Anthony Yulo
Hi! How can I launch the popup when I enter a key instead of hovering on the component? *The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review,retransmission,dissemination or

Re: Example jars

2006-11-28 Thread Grant Smith
Hi Marcus, The list of dependencies [1], does in fact show the commons-fileupload dependency. Thanks, Grant [1] http://myfaces.apache.org/tomahawk/dependencies.html On 11/28/06, Marcus Bond [EMAIL PROTECTED] wrote: Great, thanks! From: Matthias Wessendorf [EMAIL PROTECTED] Reply-To:

Using Tomahawk Table with facelets

2006-11-28 Thread Dudu
I'm trying to use the component Table of tomahawk 1.1.3. I've followed the page http://wiki.apache.org/myfaces/Use_Facelets_with_Tomahawk but this error is occuring. What I need to do? In My WEB-INF/tomahawk.taglib.xml has the table defined as bellow: tag tag-nametable/tag-name

Re: Using Tomahawk Table with facelets

2006-11-28 Thread Dudu
I'm sorry! But I'm trying to use the http://myfaces.apache.org/tomahawk/extDataTable.html with facelets... Once it works, and after I've puted on wiki then the app stoped... On 11/28/06, Mike Kienenberger [EMAIL PROTECTED] wrote: Please do not add your table entry to the

Re: Using Tomahawk Table with facelets

2006-11-28 Thread Mike Kienenberger
My guess is that the tomahawk.jar isn't in your classpath. Rather than invent a new table taglib definition, simply use the existing t:dataTable tag. On 11/28/06, Dudu [EMAIL PROTECTED] wrote: I'm trying to use the component Table of tomahawk 1.1.3. I've followed the page

Re: how to create a SelectOneMenu with dynamic list

2006-11-28 Thread Damar Thapa
Hi, This link found to be dead now, any idea? http://example.irian.at/example-sandbox-20061118/ajaxChildComboBox.jsf Damar On 11/18/06, Gerald Müllan [EMAIL PROTECTED] wrote: Hi, the list is reduced in the ValueChangeEvent method? Apart from this, i can`t see any mistakes in the code

Re: BBS

2006-11-28 Thread Dave
All BBS software are standalone web applications, or they can be integrated with existing web applications? for example, user identities, single sign on, discussion board associated with an EJB entity(eg, a Book), etc. I looked some softwares, they seems to be standalone web applications.

Re: t:dataTable with dynamic newspaperColumns

2006-11-28 Thread Mike Kienenberger
The implementation of get/setNewspaperColumns needs to be patched. It looks like this: public int getNewspaperColumns() { return _newspaperColumns; } public void setNewspaperColumns(int newspaperColumns) { this._newspaperColumns = newspaperColumns; } It needs to be

rendered question (form)

2006-11-28 Thread support
I have an xhtml page that has 3 modes: 1. Display a table from an Oracle DB 2. Edit a row in the table when a hyperlink is clicked 3. Add a row when the add button is clicked For #2 (when edit button is clicked) the row is displayed in textInput areas and a Save button is provided.

Re: Tree2 Navigation with iframe

2006-11-28 Thread Anthony Hong
Thanks Andrew Robinson. But I have problem with both options. For 1. Tree panel is not refreshed, as page displaying in frame. For 2. Page displayed in div body zone also have to be used in ajax way, otherwise, The whole page refreshed, tree will be reloaded. Any advice. On 11/28/06, Andrew

Re: BBS

2006-11-28 Thread Andrew Robinson
I am by no means an expert on them, only briefly looked into them, but I remember when looking at yazd that it had pluggable security. As for using an EJB, your could map your EJB to their tables. I am not aware of any that let you design the tables yourself and bind them to your own schema. On

Re: Action method not getting called inside the dataTable

2006-11-28 Thread Amit Nair
Hi Thanks a lot Adrin for your reply !!! I changed the scope of bean from request to session. Now the action method is getting called. But I found that both the beans(siteRequirementBean requirementDisplay) needs to be in session scope. But the command link is only calling the action method

Using a outputLabel and a outputText together

2006-11-28 Thread ying lcs
Hi, i have a h:outputLabel.../ h:inputText.../ i see a label and then a text box. That is what I want. However, when i want to add another line of text as the 'help' text, by adding a h:outputText... I don't see the help text. This is what i am trying to do: h:outputLabel for=buildlanguage

RE: Using a outputLabel and a outputText together

2006-11-28 Thread pallavi.roy
Hi ying, Do mention whether in your statement h:outputText value=#{build.help} / build is the var of your resource bundle or something else. Best Regards, Pallavi -Original Message- From: ying lcs [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 29, 2006

Re: Using a outputLabel and a outputText together

2006-11-28 Thread ying lcs
Pallavi, Thanks. that solves my problem. On 11/28/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi ying, Do mention whether in your statement h:outputText value=#{build.help} / build is the var of your resource bundle or something else. Best Regards, Pallavi -Original