Re: Best pratices to set TimeZone

2007-03-06 Thread Alexandre Jaquet
[EMAIL PROTECTED] wrote: I’m having problem displaying date converted with f:convertDateTime because if I have the date value 2007-02-06 00:00:00.000 I show the date minus one day. I think the problem is because I don’t set the TimeZone used and the converter use GMT Time Zone. What is the

tomahawk src

2007-03-02 Thread Alexandre Jaquet
Hi, I need to modify the tomahawk dataScroller to load datas only by index and a max (but displaying the total pages) Where can I get the source. Cheers. Alexandre Jaquet

Re: update a parent window

2006-10-19 Thread Alexandre Jaquet
] http://wiki.apache.org/myfaces/JavascriptWithJavaServerFaces Regards, Jeff Bischoff Kenneth L Kurz Associates, Inc. Alexandre Jaquet wrote: Hi, I'm facing a problem, I'm trying to get the id / value of a component of a data table for updating a parent window exemple : h:column f:facet

JsCookMenu change css style

2006-09-20 Thread Alexandre Jaquet
Hi, How can I change the style for the disabled menu item. I've tryed menuItem.setDisabled(true); setDisabledStyleClass(disableMenu); but it's not working regards

session variable

2006-09-19 Thread Alexandre Jaquet
Hi, I'm looking for a way to create session variable in my managed bean How can I do it ? thx

open pop up with parameter

2006-09-18 Thread Alexandre Jaquet
Hi, I looking for a way to open a popup with dynamic paramater. How can I do that ? M best regards

JsCookMenu change css style when menu item are disabled

2006-09-15 Thread Alexandre Jaquet
Hi, I would like to know how can I change the css style of a disabled menu item. I've try to set it in a constructor like that myNavigationMenuItem(String textCode, String goString, boolean splitBefore, boolean disabled) { super(UtilGui.getTranslationText(textCode), goString, null,

Re: current path

2006-09-11 Thread Alexandre Jaquet
can either create a request scoped attribute called basePath in the scriptlet or use the JSP EL ${pageContext.request.contextPath} in the page. Dennis Byrne -Original Message- From: Alexandre Jaquet [mailto:[EMAIL PROTECTED] Sent: Friday, September 8, 2006 09:15 AM To: 'MyFaces

FacesMessage displayed two times

2006-09-08 Thread Alexandre Jaquet
Hi, When I've some error, the error message is displayed two times with my code : example : if (validateAction() == false) UtilGui.setJSFErrorMessage(action_null, new Exception()); public static void setJSFErrorMessage(String errorIdFromBundle, Exception fromEx) { if

Re: DataTable + tobago = NullPointerException

2006-09-08 Thread Alexandre Jaquet
you can't mix tobago with other component PiotrekJ wrote: Hello, I've a problem with myfaces and tobago. When I want to use h:dataTable component, I get the following error: *(The strange thing is that, if I remove Tobago jars from project, everything works ok)* 2006-09-08 11:37:52

current path

2006-09-08 Thread Alexandre Jaquet
Hi, I'm trying to put the current path in a component with the following code : % String path = request.getContextPath(); String basePath = request.getScheme() + :// + request.getServerName() + : + request.getServerPort() + path + /; % h:commandLink id=lnkDetail

input suggest usage

2006-08-29 Thread Alexandre Jaquet
Hi, I want to use this component, I'm using myfaces 1.1 what do I need more ? Thanks for your advice

JSF and EL expression

2006-08-14 Thread Alexandre Jaquet
Hi, I need to test the existance of a element before to show it's value I would like something like h:outputText value=if #{row.productFamily}!= null #{row.productFamily.text} / how to do it regards

Re: JSF and EL expression

2006-08-14 Thread Alexandre Jaquet
=#{row.productFamily != null}/ -Original Message- From: Alexandre Jaquet [mailto:[EMAIL PROTECTED] Sent: Montag, 14. August 2006 11:24 To: MyFaces Discussion Subject: JSF and EL expression Hi, I need to test the existance of a element before to show it's value I would like something like

jscookmenu submenu

2006-07-24 Thread Alexandre Jaquet
Hi, I would like to know how to add dynamically a sub menu like : file file1 file1_1 file1_2 file2 Currently I use this way : NavigationMenuItem tools = getMenuNaviagtionItem(UtilGui.getTranslationText(common_tools), null); tools.add(new

Re: jscookmenu submenu

2006-07-24 Thread Alexandre Jaquet
Geat thanks for the link :) Bruno Aranda wrote: Hi, have a look at this page [1] in the myfaces wiki. Regards, Bruno [1] http://wiki.apache.org/myfaces/Dynamic_Menus_with_JSCookMenu On 7/24/06, Alexandre Jaquet [EMAIL PROTECTED] wrote: Hi, I would like to know how to add dynamically a sub

Re: jscookmenu submenu

2006-07-24 Thread Alexandre Jaquet
This sample doesn't cover my needs I need to have a menu with this structure : FILE FILE1 FILE1_1 FILE1_2 FILE2 Alexandre Jaquet wrote: Geat thanks for the link :) Bruno Aranda wrote: Hi, have a look at this page [1] in the myfaces wiki. Regards, Bruno [1] http://wiki.apache.org

Re: jscookmenu submenu

2006-07-24 Thread Alexandre Jaquet
(menu_datas_sales_forces_zone), test1,./images/myfaces.gif,true)); saleforce_menu.add(new NavigationMenuItem(UtilGui.getTranslationText(menu_datas_sales_forces_agent_category), test1,./images/myfaces.gif,true)); datas.add (saleforce_menu); Alexandre Jaquet wrote: This sample doesn't cover my

dataScroller removed element trouble

2006-07-12 Thread Alexandre Jaquet
Hi, I got the following error message after having deleted a item: could not find UIData referenced by attribute [EMAIL PROTECTED] = 'data' In my code I've a method (who work fine) : public String deleteList() { ec.log(Begin - deleteList()); try { for (int i = 0; i

dataTable rowOnClick execute a JSF action

2006-07-10 Thread Alexandre Jaquet
Hi, Does anybody knows how to execute a JSF action when user click on a row. I found a not proper way and I'm looking for a simple. Code used right now:

does adf:table load all items ?

2006-07-10 Thread Alexandre Jaquet
Hi, I would like to know if adf:table load all items in memory. Regards

Re: display tag

2006-07-07 Thread Alexandre Jaquet
Forget about it I will use tomahawk table temporary . regards Alexandre Jaquet wrote: Hi, Anyone have integrated this component with myfaces 1.1 ? I can't use tomawk and myfaces due to perfomance lack. Regards

tomahawk 1.1.3 and tomahawk 1.1.2 bugs

2006-07-07 Thread Alexandre Jaquet
After doing some test I saw the following bugs : tomahawk 1.1.3 dataTable current row id is 1 shifted when used with dataScroller tomahawk 1.1.2 jscookmenu display bug (cross image) dataTable current row id is correct for the first page, the first element on the second page doesn't have an id

Re: tomahawk 1.1.3 and tomahawk 1.1.2 bugs

2006-07-07 Thread Alexandre Jaquet
Hi Mario, Is there any cvs where I can work ? :) Regards Mario Ivankovits wrote: Hi Alexandre! tomahawk 1.1.3 dataTable current row id is 1 shifted when used with dataScroller tomahawk 1.1.2 jscookmenu display bug (cross image) dataTable current row id is correct for the first page, the

Re: writing is own HtmlDataTable

2006-07-06 Thread Alexandre Jaquet
://wiki.apache.org/myfaces/ Hope that helps, James -Original Message- From: Alexandre Jaquet [mailto:[EMAIL PROTECTED] Sent: Wed 7/5/2006 10:44 AM To: MyFaces Discussion Subject: writing is own HtmlDataTable I need to write my own table component and I need your advice to start it. Do I need

Re: where can get examples

2006-07-06 Thread Alexandre Jaquet
Here you can download the demo http://apache.mirror.testserver.li/myfaces/binaries/myfaces-1.1.1-examples.zip Regards wch zll wrote: Hi, I am a newbie in myfaces. I am trying to download the myfaces-1.1.3-examples.zip file, but i cant find it anywhere. So can anyone help. From website :

Re: explanation of DataTable

2006-07-05 Thread Alexandre Jaquet
2006/7/4, Alexandre Jaquet [EMAIL PROTECTED]: Well I'm been working with a datatable and a datascroller, what I want is to load only 5 rows by time. Cosma Colanicchia wrote: Alexandre, can you specify some more details about what you're trying to do? Cosma 2006/7/4, Alexandre Jaquet

[bug] jscookmenu

2006-07-05 Thread Alexandre Jaquet
When I use IE the menu items doesn't appear correctly we can see an image with a cross, when refreshing the page the trouble is solved. Regards

writing is own HtmlDataTable

2006-07-05 Thread Alexandre Jaquet
I need to write my own table component and I need your advice to start it. Do I need to extend an existing class ? Wich step I've to follow ? thx for your advice

jscookmenu icon trouble

2006-07-04 Thread Alexandre Jaquet
Hi, When I use JsCookMenu with IE an icon doesn't appear (a cross image appear) Any idea how to fix it ? Regards

explanation of DataTable

2006-07-04 Thread Alexandre Jaquet
Hi, I want to understand how work DataTable any good documentation ? I want to understand the cars-demo example : http://wiki.apache.org/myfaces/WorkingWithLargeTables regards

Re: explanation of DataTable

2006-07-04 Thread Alexandre Jaquet
this helps Cosma 2006/7/4, Alexandre Jaquet [EMAIL PROTECTED]: Hi, I want to understand how work DataTable any good documentation ? I want to understand the cars-demo example : http://wiki.apache.org/myfaces/WorkingWithLargeTables regards

Re: explanation of DataTable

2006-07-04 Thread Alexandre Jaquet
, that allows you to load the records only when they're actually displayed (think of a paged dataTable). Cosma 2006/7/4, Alexandre Jaquet [EMAIL PROTECTED]: Well Cosma first thanks for your explanation, if I understand well, all components have to extend UIData and we can set to every components

Re: explanation of DataTable

2006-07-04 Thread Alexandre Jaquet
index getRowData(); //finally returns list.get(rowIndex); Cagatay On 7/4/06, *Alexandre Jaquet* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Well Cosma first thanks for your explanation, if I understand well, all components have to extend UIData and we can set to every

Re: explanation of DataTable

2006-07-04 Thread Alexandre Jaquet
Well I'm been working with a datatable and a datascroller, what I want is to load only 5 rows by time. Cosma Colanicchia wrote: Alexandre, can you specify some more details about what you're trying to do? Cosma 2006/7/4, Alexandre Jaquet [EMAIL PROTECTED]: I only need to work

master detail bean

2006-07-03 Thread Alexandre Jaquet
Hi, I'm looking for the code behind this methods : of the master detail example : action=#{detailToggler.toggleDetail} from the following example : http://www.irian.at/myfaces/masterDetail.jsf I doesn't found the managed bean used by this example Regards

MasterDetail doesn't found the managed bean

2006-06-30 Thread Alexandre Jaquet
Hi, I'm looking for the source code of the managed bean for this example : http://www.irian.at/myfaces/masterDetail.jsf I've look the myfaces-config-examples but didn't found it regards

Re: MasterDetail doesn't found the managed bean

2006-06-30 Thread Alexandre Jaquet
/builds/myfaces/nightly/ On 6/30/06, Alexandre Jaquet [EMAIL PROTECTED] wrote: Hi, I'm looking for the source code of the managed bean for this example : http://www.irian.at/myfaces/masterDetail.jsf I've look the myfaces-config-examples but didn't found it regards

jscookmenu trouble (again)

2006-06-30 Thread Alexandre Jaquet
Hi, I forgot the work I've done this last two days :'( and I'm been trying to use again jscookmenu. I've created a managed bean called NavigationMenu, placed it into the faces-config like this way : managed-bean managed-bean-namenavigationMenu/managed-bean-name

Re: jscookmenu trouble (again)

2006-06-30 Thread Alexandre Jaquet
Solved it was a compilation error :) Alexandre Jaquet wrote: Hi, I forgot the work I've done this last two days :'( and I'm been trying to use again jscookmenu. I've created a managed bean called NavigationMenu, placed it into the faces-config like this way : managed-bean managed-bean

Re: MasterDetail doesn't found the managed bean

2006-06-30 Thread Alexandre Jaquet
I'm still looking for the managed bean, and how work : currentDetailExpanded and #{detailToggler.toggleDetail} regards Alexandre Jaquet wrote: Well this exactly what I've done ;) Bruno Aranda wrote: The sources for the examples should be in the WEB-INF/src folder of the examples bundles

t:jscookMenu doesn't appear

2006-06-29 Thread Alexandre Jaquet
Hi, I'm trying to use Jscookmenu into a page, I placed it into head/head but when I load my page nothing appear. If I look the source code of the page I doesn't see anything in relation with the menu. here my jsf page : thx for your help %@ taglib uri=http://java.sun.com/jsf/html;

Re: jscookMenu doesn't appear

2006-06-29 Thread Alexandre Jaquet
is shown as page title. Regards, Stephan http://jroller.com/page/stritti -Original Message- From: Alexandre Jaquet [mailto:[EMAIL PROTECTED] Sent: Thursday, June 29, 2006 8:03 AM To: 'MyFaces Discussion' Subject: t:jscookMenu doesn't appear Hi, I'm trying to use Jscookmenu

Re: jscookMenu doesn't appear

2006-06-29 Thread Alexandre Jaquet
It's working fine right now but I can't put it into a page who use jsp:include :/ Strittmatter, Stephan wrote: Sorry, no. I currently fighting with jscookmenu within a portlet :-/ which does also not work. -Original Message- From: Alexandre Jaquet [mailto:[EMAIL PROTECTED] Sent

dataTable rowOnClick problem

2006-06-29 Thread Alexandre Jaquet
Hi , I use rowOnClick method to retrieve the current id, my problem is when I click on the first row, the id is null. Do I've something wrong in my declaration : t:dataTable id=data value=#{currencyGui.currenciesFilter} rendered=true var=row

Re: dataTable rowOnClick problem

2006-06-29 Thread Alexandre Jaquet
In fact when I click under the second row, I get the third value :| Alexandre Jaquet wrote: Hi , I use rowOnClick method to retrieve the current id, my problem is when I click on the first row, the id is null. Do I've something wrong in my declaration : t:dataTable id=data

rowOnclick execute a faces action

2006-06-29 Thread Alexandre Jaquet
Is it possible to tell rowOnClick to execute a faces action (like a h:commandButton) ? Regards :)

[tomahawk] dataScroller freezing

2006-06-28 Thread Alexandre Jaquet
Hi, I'm been using dataScroller component and I'm having trouble when I navigate, the server doesn't response. Any idea on how to fix it ?

dataTable get datas from multiple table

2006-06-28 Thread Alexandre Jaquet
: First name - Name - Mother tongue -- Alexandre Jaquetfrench PaulToto english we already have tryied : t:column h:outputText value=#{tableGUI.getLanguageValue(rowRecord.refLanguage)}/ /t:column and : t:column

Re: dataTable get datas from multiple table

2006-06-28 Thread Alexandre Jaquet
Well thx Julian :) Alexandre Jaquet Julian Ray wrote: A couple of thoughts [1] Use a join to get a composite row back from the database which contains the complete set of data you need [2] In your backing bean create a set of methods to get the required column data from whichever table

Re: [tobago] sheet

2006-06-27 Thread Alexandre Jaquet
the outside elements. regards phil Alexandre Jaquet wrote: Hi, Does anyone could explain me how columns attribute works, I'm trying to create two columns with 50px.: *columns=50px;50px *but nothing appends Regards

Re: [tobago]Expression: #{clientConfigController.locale}. Return value null

2006-06-26 Thread Alexandre Jaquet
I correct it by placing compiled classes : \org\apache\myfaces\tobago\example\demo under classes directory Alexandre Jaquet wrote: Hi, I got the following error message when I try to run a jsp page who include tobago tag : Expression: #{clientConfigController.locale}. Return value null

[tobago] theme is not loaded

2006-06-26 Thread Alexandre Jaquet
I made a simple test page %@ taglib uri=http://myfaces.apache.org/tobago/component; prefix=tc % %@ taglib uri=http://myfaces.apache.org/tobago/extension; prefix=tx % %@ taglib uri=http://java.sun.com/jsf/core; prefix=f % %@ taglib tagdir=/WEB-INF/tags/layout prefix=layout % layout:overview

[tobago] sheet

2006-06-26 Thread Alexandre Jaquet
Hi, Does anyone could explain me how columns attribute works, I'm trying to create two columns with 50px.: *columns=50px;50px *but nothing appends Regards

Re: [tobago] theme is not loaded

2006-06-26 Thread Alexandre Jaquet
Alexandre Jaquet schrieb: I made a simple test page %@ taglib uri=http://myfaces.apache.org/tobago/component; prefix=tc % %@ taglib uri=http://myfaces.apache.org/tobago/extension; prefix=tx % %@ taglib uri=http://java.sun.com/jsf/core; prefix=f % %@ taglib tagdir=/WEB-INF/tags/layout prefix=layout

[tobago]Expression: #{clientConfigController.locale}. Return value null

2006-06-25 Thread Alexandre Jaquet
Hi, I got the following error message when I try to run a jsp page who include tobago tag : Expression: #{clientConfigController.locale}. Return value null Any idea of what I need ? Regards

Re: Tomahawk DataTable - HOW TO

2006-06-23 Thread Alexandre Jaquet
Hope this help Alexandre Jaquet wrote: Hi Tom, I encounter some trouble to, if you find the way please post back a working example.Then we can have a simple working tutorial. Regards. Alexandre Jaquet Tom Innes wrote: We are trying to use Tomahawk datatable and datascroller with command

[tomahawk] error when add library

2006-06-22 Thread Alexandre Jaquet
Hi, I just added to a working project the tomahawk library and when I access the project I get the following error message : DEBUG http-8080-Processor25 org.apache.catalina.core.ApplicationDispatcher - The Response is vehiculed using a wrapper:

[tomahawk] t:dataScroller trouble

2006-06-22 Thread Alexandre Jaquet
After solving my integration trouble, I'm trying to use some component, now I've a trouble with dataScroller I use it this way : t:dataScroller id=scroll_1 for=#{currencyGui.currenciesFilter} paginator=true fastStep=4

Re: [tomahawk] t:dataScroller trouble

2006-06-22 Thread Alexandre Jaquet
(ExtensionsFilter.java:122) what's the problem ? :s Alexandre Jaquet wrote: After solving my integration trouble, I'm trying to use some component, now I've a trouble with dataScroller I use it this way : t:dataScroller id=scroll_1

Re: [tomahawk] t:dataScroller trouble

2006-06-22 Thread Alexandre Jaquet
) at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301) at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:415) ... 20 more Alexandre Jaquet wrote: Sorry I see I didn't used it correctly, I missed to refer an existing

java.lang.RuntimeException: TableRenderer

2006-06-21 Thread Alexandre Jaquet
(Thread.java:595) Caused by: javax.servlet.ServletException: javax.servlet.jsp.JspException: TableRenderer Thx in advance for your help Alexandre Jaquet