Checkbox in a Grid in a Zone in a Form?

2010-04-30 Thread Chuck Kring
Hi, I have need for form containing a grid containing a checkbox 'upgrade' used to denote whether to process each entity. That all works fine, but I need the grid to update after submits (e.g. a submit button to select all and another to deselect all). I wrapped the grid in a zone and set

URLRewriting and tapestry.force-absolute-uris

2010-04-30 Thread Christian Riedel
Hi list, I just found in Tapestry that there is a nice link-optimization when tapestry.force-absolute-uris=false (the default). If the initial request is like "http://app/some/path/to/page"; any links on that page will be relative to "http://app/some/path/to/";. That's ok until the URLRewriti

Re: GSOC 2010 - ACCEPTED

2010-04-30 Thread Pablo dos Reis
Joost, I liked the video very much. If you can pass at least the idea of components I thank. How was it implemented? What javascript was use? The code would bee good too. And I think interesting you post here for all users can see. tks 2010/4/30 Joost Schouten (ml) > Pablo, > > If interest

Re: [T5] onActivate, onPassivate and actionlink

2010-04-30 Thread paha
it was a terrible typo from me. misspelled t:context :( -- View this message in context: http://old.nabble.com/Re%3A--T5--onActivate%2C-onPassivate-and-actionlink-tp28410121p28411519.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: GSOC 2010 - ACCEPTED

2010-04-30 Thread Joost Schouten (ml)
Pablo, If interested we have created a full drag and drop calendar and select with auto-complete for our internal project. I could share some of our code to give you a head start. The product is not yet launched but these these features are partly shown in this video [1] Let me know if you w

Re: [T5] onActivate, onPassivate and actionlink

2010-04-30 Thread Joost Schouten (ml)
How have you defined the ActionLink? It sounds like you might have set the context parameter for it incorrectly. Can you paste your link definition here? cheers, Joost paha wrote: Hi, i am very new to tapestry and must be missing some important concept, need you help. i have a page (list of

Re: Production mode not changing on latest snapshot

2010-04-30 Thread Ulrich Stärk
Are you sure that you are not setting the PRODUCTION_MODE symbol to false somewhere else? Try searching your codebase. Are you using some third-party module that is setting it to false? Uli On 30.04.2010 05:53, Raul Raja Martinez wrote: @Inject @Symbol(SymbolConstants.PRODUCTION_MODE) private

Re: tapestry warning in log4j

2010-04-30 Thread Ulrich Stärk
Change your loglevel to something less verbose then WARN (e.g. ERROR). Those warnings are there for a reason though. You really should fix the underlying issues instead of hiding them. Uli On 30.04.2010 04:22, asianCoolz wrote: Hi, my log4j output the below warning, how to disable below wa

[T5] onActivate, onPassivate and actionlink

2010-04-30 Thread paha
Hi, i am very new to tapestry and must be missing some important concept, need you help. i have a page (list of products), and one integer parameter (category), passed to it via onActivate. void onActivate(Integer param) { this.param = param } Object onPassivate() { return param; } This p