Re: Query parameters

2010-08-20 Thread Howard Lewis Ship
with replacing the page pool with static instaces. All nice and well, but how do I pass query parameters through PageLink or AcionLink ? Best to explain it through the example I'm using it with: There is a page that lists documents, and there is a search form with few fields

Query parameters

2010-08-19 Thread Davor Hrg
I'm posting this to user group since it is mostly usage question. The new query parameter binding is a welcome addition, especialy in combination with replacing the page pool with static instaces. All nice and well, but how do I pass query parameters through PageLink or AcionLink ? Best

Re: Query parameters

2010-08-19 Thread Howard Lewis Ship
it is mostly usage question. The new query parameter binding is a welcome addition, especialy in combination with replacing the page pool with static instaces. All nice and well, but how do I pass query parameters through PageLink or AcionLink ? Best to explain it through the example I'm using

Re: Query parameters

2010-08-19 Thread Michael Gentry
and well, but how do I pass query parameters through PageLink or AcionLink ? Best to explain it through the example I'm using it with: There is a page that lists documents, and there is a search form with few fields. One field is the year which tells the page to limit to docs from that year. So

Re: Query parameters

2010-08-19 Thread Howard Lewis Ship
group since it is mostly usage question. The new query parameter binding is a welcome addition, especialy in combination with replacing the page pool with static instaces. All nice and well, but how do I pass query parameters through PageLink or AcionLink ? Best to explain it through

Re: Query parameters

2010-08-19 Thread Igor Drobiazko
nice and well, but how do I pass query parameters through PageLink or AcionLink ? Best to explain it through the example I'm using it with: There is a page that lists documents, and there is a search form with few fields. One field is the year which tells the page to limit to docs

Re: Query parameters

2010-08-19 Thread Inge Solvoll
parameter binding is a welcome addition, especialy in combination with replacing the page pool with static instaces. All nice and well, but how do I pass query parameters through PageLink or AcionLink ? Best to explain it through the example I'm using it with: There is a page

Re: Query parameters

2010-08-19 Thread Dmitry Gusev
in combination with replacing the page pool with static instaces. All nice and well, but how do I pass query parameters through PageLink or AcionLink ? Best to explain it through the example I'm using it with: There is a page that lists documents, and there is a search form

[t5] form method=get, old school query parameters

2008-06-25 Thread Lutz Hühnken
Hi everybody, what is the way to create a form with method=GET in Tapestry 5? I would like to create a simple form that produces a GET request with query parameters, such as www.example.com/books?author=kingcategory=crime. What is the straight-forward way to do that? Thanks for your help, Lutz

Re: [t5] form method=get, old school query parameters

2008-06-25 Thread Thiago H. de Paula Figueiredo
Em Wed, 25 Jun 2008 10:23:27 -0300, Lutz Hühnken [EMAIL PROTECTED] escreveu: what is the way to create a form with method=GET in Tapestry 5? I would like to create a simple form that produces a GET request with query parameters, such as www.example.com/books?author=kingcategory=crime. What

Re: [t5] form method=get, old school query parameters

2008-06-25 Thread Kristian Marinkovic
] 25.06.2008 15:32 Bitte antworten an Tapestry users users@tapestry.apache.org An Tapestry users users@tapestry.apache.org Kopie Thema Re: [t5] form method=get, old school query parameters Em Wed, 25 Jun 2008 10:23:27 -0300, Lutz Hühnken [EMAIL PROTECTED] escreveu: what is the way

Tapestry read query parameters before page rendering [T4.0]

2007-07-09 Thread Josh Joy
Hi, If I have a page like http://www.website.com/report?id=12345 and I send someone this link How can I use the information for the parameter id with arg 12345 to generate the report using the custom information I pull for this particular id? I know when dealing with forms, I can

Re: How to store the query parameters in a Table component?

2006-08-11 Thread Pratibha Gopalam
when you enter a new search parameter, try resetting the table Table table = (Table) this.getComponent(myTable); table.reset(); Jun Tsai wrote: hi all, I have a search form and a talbe in a page.When I enter some search text in form and click search button,results was

Re: How to store the query parameters in a Table component?

2006-08-10 Thread Jun Tsai
use persist=client 2006/8/8, Gurps [EMAIL PROTECTED]: Hi, this is exactly my problem too. Have you found the solution? many thanks -- View this message in context: http://www.nabble.com/How-to-store-the-query-parameters-in-a-Table-component--tf1685056.html#a5701412 Sent from the Tapestry

link to Service gettting ampersands encoded and fouling up my query parameters

2006-07-19 Thread John Menke
I create a url string which i use as src to an IFrame. This url points to a Tapestry service. I have been having problems with the parameters being encoded incorrectly intermittently. Ampersands end up getting encoded like this: http://mysite.com?service=MyServiceamp;acco

How to store the query parameters in a Table component?

2006-05-25 Thread Jun Tsai
hi all, I have a search form and a talbe in a page.When I enter some search text in form and click search button,results was shown in table component.ButWhen I click the second page link.I found the results is all records not by search parameters.How to store the search text in table pages? I