Unsubscription action is not working

2009-02-05 Thread Yeeswara Nadapana (HCL Financial Services)
DISCLAIMER: --- The contents of this e-mail and any attachment(s) are confidential and intended for the named recipient(s) only. It shall not attach any liability on the originator

RE: T5: onActivate() called twice

2008-09-09 Thread Yeeswara Nadapana (HCL Financial Services)
Hi Leon, I am facing the same problem with the onActivate() method calling twice. Did you find any solution for this? Thanks, Yees. -Original Message- From: Leon Derks [mailto:[EMAIL PROTECTED] Sent: Monday, April 21, 2008 6:56 PM To: Tapestry users Subject: Re: T5: onActivate()

Using HashMap with Tapestry 5

2008-07-16 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I have a HashMapString, Double with some values on my page class. How can I display the desired value (map.get(key)) on my page template. Can anyone help with the syntax? Regards, Yeeswar DISCLAIMER:

RE: Using HashMap with Tapestry 5

2008-07-16 Thread Yeeswara Nadapana (HCL Financial Services)
that functionality is available within the prop: binding. Check out the ognl: binding available through the tapestry5-components library. http://code.google.com/p/tapestry5-components/ -Original Message- From: Yeeswara Nadapana (HCL Financial Services) [mailto:[EMAIL PROTECTED] Sent

RE: Using HashMap with Tapestry 5

2008-07-16 Thread Yeeswara Nadapana (HCL Financial Services)
Thanks Jonathan, I have tried ${ognl:results.get('key')} and it works... -Original Message- From: Yeeswara Nadapana (HCL Financial Services) Sent: Wednesday, July 16, 2008 7:39 PM To: Tapestry users Subject: RE: Using HashMap with Tapestry 5 I couldn't exactly understand how

Displaying array contents on template

2008-07-15 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am using Tapestry 5 with my application. I want to display the array contents on my page without using any t:loop component. What should be the syntax for that? I given this on my Page class. @Persist private double[] results; I want to display contents of this array

Displaying image on T5 page

2008-07-10 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am new to Tapestry. Using Tapestry 5.0.10 with my application. I need to display a chart image on my application using dynamic data. I am using JFreeChart for that. But, I couldn't get the way to display the image on my page. I have to display the image while rendering the page,

RE: Displaying image on T5 page

2008-07-10 Thread Yeeswara Nadapana (HCL Financial Services)
}/ further informations you find here http://tapestry.apache.org/tapestry5/tapestry-core/guide/assets.html 2008/7/10 Yeeswara Nadapana (HCL Financial Services) [EMAIL PROTECTED]: Hi, I am new to Tapestry. Using Tapestry 5.0.10 with my application. I need to display a chart image on my

How to Upload a file to my server

2008-03-06 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am using Tapestry 5 for my application. I want to upload an excel file to the Tomcat server. On HTML, I am using the input t:type=upload t:id=strategyFile / and on java file, I written as: File stratFile = new File(c:/temp/+strategyFile.getFileName());

Problem with Page pooling

2008-03-04 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am using Tapestry 5.0.7 for my application. On my menu bar, I put some links with t:pageLink. I have put some links under t:if conditions so as to check the Login status. Problem is::: When I was not logged in, some links doesn't show up, which is CORRECT. Now, I logs in and can

RE: Problem with Page pooling

2008-03-04 Thread Yeeswara Nadapana (HCL Financial Services)
classes. Yeeswara Nadapana (HCL Financial Services) wrote: Hi Chris and Ted, Thanks for u fast replies. Here's what I am doing... This is my header.java class: @Persist private boolean isLoggedIn = true; public Header() { LogonCheck

RE: Problem with Page pooling

2008-03-04 Thread Yeeswara Nadapana (HCL Financial Services)
: Tuesday, March 04, 2008 6:13 PM To: Tapestry users Subject: Re: Problem with Page pooling It's all here http://tapestry.apache.org/tapestry5/tapestry-core/guide/appstate.html 2008/3/4, Yeeswara Nadapana (HCL Financial Services) [EMAIL PROTECTED]: Hi Chris and Ted, Thanks to you guys. I am new

onChangeEvent of a Select component

2008-01-15 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, How can I implement an onChangeEvent for my select box? I wrote the combo as: select t:id=availableFilters t:type=select model=filterList value=prop:currentFilter / I have to call an event listener method in my page class. Please explain how to do that? Thanks and Regards

Use System ClassLoader with Tapestry5

2008-01-14 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am building a Tapestry 5 application. It is using a Tapestry specific ClassLoader called org.apache.tapestry.internal.services.ComponentInstantiatorSourceImpl$P ackageAwareLoader to load all the classes. I am trying to use an DWR call to method on my Page class, where its using System

DWR compatible with T5?

2008-01-12 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, Can I use DWR for Ajax calls with my Tapestry5 application? Thanks and Regards Yeeswara N DISCLAIMER: --- The contents of this e-mail and any attachment(s) are

RE: T5: Equivalent to reserved parameters ?

2008-01-10 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, Please suggest me a simple way to show my ArrayList of string objects as a drop down combo box. Thanks Yees. -Original Message- From: Hugo Palma [mailto:[EMAIL PROTECTED] Sent: Thursday, January 10, 2008 4:11 PM To: Tapestry users Subject: T5: Equivalent to reserved parameters ?

How to make drop down box from ArrayList

2008-01-10 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, Please suggest me a simple way to show my ArrayList of string objects as a drop down combo box. Thanks Yees. DISCLAIMER: --- The contents of this e-mail and any

RE: How to make drop down box from ArrayList

2008-01-10 Thread Yeeswara Nadapana (HCL Financial Services)
Yeeswara Nadapana (HCL Financial Services) schrieb: Hi, Please suggest me a simple way to show my ArrayList of string objects as a drop down combo box. Thanks Yees. DISCLAIMER

T5 - onChange Event from Combobox

2008-01-09 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am using Tapestry 5 with my application. I am loading some data into a combo box using the below code snippet: select id=availableFilters t:loop source=filterList value=currentFilteroption value=${currentFilter}${currentFilter}/option/t:loop /select Now, I want to write a

T5 - onChange event from combo box

2008-01-09 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am using Tapestry 5 with my application. I am loading some data into a combo box using the below code snippet: select id=availableFilters t:loop source=filterList value=currentFilteroption value=${currentFilter}${currentFilter}/option/t:loop /select Now, I want to write a

RE: T5: AJAX and Firefox doesn't work

2008-01-02 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I want to use like t:loop source=filterList which is a List of String objects. I want to add those strings to the combo box... so trying to loop through the option tag... Please explain how to add those elements to combo box? Thanks, Yeeswar. -Original Message- From: Britske

RE: Displaying form data in Tapestry 5

2008-01-01 Thread Yeeswara Nadapana (HCL Financial Services)
AM, Yeeswara Nadapana (HCL Financial Services) [EMAIL PROTECTED] wrote: Hi, I am using Tapestry 5. When I submit a form, how do I display the form's data on a freshly injected page? Please help Thanks, Yeeswar. DISCLAIMER

T5-How to load data into Combo

2007-12-30 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, How can I load the data into my select box which I got from the database. Currently I am getting an ArrayList of String objects which I need to add to my select. Please guide me how to do that, as I am unable to find a solution through ENUMs... Thanks Yeeswar DISCLAIMER:

T5-How to load data into Combo

2007-12-29 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, How can I load the data into my select box which I got from the database. Currently I am getting an ArrayList of String objects which I need to add to my select. Please guide me how to do that, as I am unable to find a solution through ENUMs... Thanks Yeeswar DISCLAIMER:

Displaying form data in Tapestry 5

2007-12-26 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am using Tapestry 5. When I submit a form, how do I display the form's data on a freshly injected page? Please help Thanks, Yeeswar. DISCLAIMER: --- The contents of

RE: Displaying form data in Tapestry 5

2007-12-26 Thread Yeeswara Nadapana (HCL Financial Services)
. The configuration is also very small in web.xml I think T5 with Spring is the best deal out there. On 12/26/07, Yeeswara Nadapana (HCL Financial Services) [EMAIL PROTECTED] wrote: Hi, I am using Tapestry 5. When I submit a form, how do I display the form's data on a freshly injected page? Please help

Order of the BeanEditForm elements

2007-12-21 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, Even the fields and their getter methods are declared in my desired order, it renders the pages with elements in alphabetical order. What can I do to keep the form elements in my desired order? Thanks, Yeeswar -Original Message- From: Yeeswara Nadapana (HCL Financial Services

RE: Order of the BeanEditForm elements

2007-12-21 Thread Yeeswara Nadapana (HCL Financial Services)
://tapestry.apache.org/tapestry5/tapestry-core/component-parameters. html#orgapachetapestrycorelibcomponentsbeaneditform g, kris Yeeswara Nadapana (HCL Financial Services) [EMAIL PROTECTED] 21.12.2007 11:47 Bitte antworten an Tapestry users users@tapestry.apache.org An Tapestry users users

Example code of T5?

2007-12-21 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, Can I get any downloads of the example code on Tapestry 5? Please help me with some links DISCLAIMER: --- The contents of this e-mail and any attachment(s) are

Using t:select in Tapestry 5

2007-12-18 Thread Yeeswara Nadapana (HCL Financial Services)
Hi, I am new to Tapestry5 and this is my first mail to the group. Can anyone please explain me the procedure to add a select box to my form? If I write as: select t:type=select t:id=xyz t:model=xyz t:value=xyz/ What goes behind the scene? Please explain me what each parameter does? I