Re: Session storage docs don't mention OptimizedSessionPersistedObject or ImmutableSessionPersistedObject

2013-01-07 Thread Howard Lewis Ship
Also, you are right, a cross-link to the OptimizedSessionPersistedObject, etc., JavaDoc would be useful. On Tue, Jan 8, 2013 at 12:52 AM, Howard Lewis Ship wrote: > How about if you request write access to the Confluence wiki and update > the Session Storage page yourself? > > > On Mon, Jan 7,

Re: Session storage docs don't mention OptimizedSessionPersistedObject or ImmutableSessionPersistedObject

2013-01-07 Thread Howard Lewis Ship
How about if you request write access to the Confluence wiki and update the Session Storage page yourself? On Mon, Jan 7, 2013 at 10:41 AM, Lance Java wrote: > I've just noticed that the "session storage" docs don't mention > OptimizedSessionPersistedObject or ImmutableSessionPersistedObject. Sh

Re: howardlewisship/tapx-datefield

2013-01-07 Thread John
Thanks for the heads up on the standard datefield. I found that there was some residual calendar css from the tapestry quickstart project that I built my project over that clashed with the tapx datefield! John - Original Message - From: Lenny Primak To: Tapestry users Sent: Mo

Re: Way to display numeric pad for phone number field in tapestry

2013-01-07 Thread Geoff Callender
Sorry, I completely missed the point of the question. On 08/01/2013, at 1:08 AM, Alejandro Scandroli wrote: > Hi Karthi > > How are you declaring your fields? And also, which Tapestry version > are you using? > After 5.3.2 you can do something like this: > > > > Take a look at: https://issues

Re: tapestry-yuicompressor minimization problem

2013-01-07 Thread Lenny Primak
You don't have to wait. Take a look at the bottom comments for this issue: https://github.com/cezary-biernacki/t5conduit/issues/2 This fixes the problem with what's available now. On Jan 7, 2013, at 12:31 PM, bhorvat wrote: > So I should then wait for the new solution I guess. Thanks for the

Re: howardlewisship/tapx-datefield

2013-01-07 Thread Lenny Primak
I am not using tapx-datefield, but standard datefield has issues including this one for us as well, See http://code.google.com/p/flowlogix/wiki/TLCalendarPopupPatch On Jan 7, 2013, at 5:44 AM, John wrote: > I've been using this component in my project and found that when the calendar > pops u

Re: howardlewisship/tapx-datefield

2013-01-07 Thread Lenny Primak
I am not using tapx-datefield, but standard datefield has issues including this one for us as well, See http://code.google.com/p/flowlogix/wiki/TLCalendarPopupPatch On Jan 7, 2013, at 5:44 AM, John wrote: > I've been using this component in my project and found that when the calendar > pops u

Re: Tapestry 5.1.0.5 Eventlink Zone Blackbird Error

2013-01-07 Thread chog
Solved by changing rendersupport.addScriptLink(scriptfile.js) to renderSupport.addScript("Javascript code here") in the javaclass's beforeRender method. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-1-0-5-Eventlink-Zone-Blackbird-Error-tp5719172p5719182.html

doc about return value of render phase methods

2013-01-07 Thread Rural Hunter
Hi, I'm reading the doc: http://tapestry.apache.org/component-rendering.html There are mainly 3 places metioning the return value: 1. Your methods may be void, or return a boolean value. Returning a value can force phases to be skipped, or even be re-visited. In the diagram, solid lines show

Re: Best way to store AJAX-changes of a select component

2013-01-07 Thread Geoff Callender
On 07/01/2013, at 11:21 PM, Stephan Windmüller wrote: > On 07.01.2013 12:07, Geoff Callender wrote: > >> ZoneUpdater does change the URL: >> listenerURIWithValue = addRequestParameter('param', param, >> listenerURIWithValue); > > You are right, I focused on the Java part. > >> Yes, the ex

Re: Tapestry 5.4-alpha-2

2013-01-07 Thread Lance Java
Hi Howard, I'm using the 5.4-alpha-2 and it would be nice if the errors component used the "alert-error" class from bootstrap instead of t-error. Something like http://bootsnipp.com/snipps/simple-login-form. Cheers, Lance. -- View this message in context: http://tapestry.1045711.n5.nabble.com/

Re: Session storage docs don't mention OptimizedSessionPersistedObject or ImmutableSessionPersistedObject

2013-01-07 Thread antalk
They are mentioned on this page: http://tapestry.apache.org/persistent-page-data.html -- View this message in context: http://tapestry.1045711.n5.nabble.com/Session-storage-docs-don-t-mention-OptimizedSessionPersistedObject-or-ImmutableSessionPersistedObject-tp5719174p5719178.html Sent from t

Re: Best way to store AJAX-changes of a select component

2013-01-07 Thread Stephan Windmüller
On 07.01.2013 12:07, Geoff Callender wrote: > ZoneUpdater does change the URL: > listenerURIWithValue = addRequestParameter('param', param, > listenerURIWithValue); You are right, I focused on the Java part. > Yes, the example uses @Persist but your problem is different - > you could avoi

howardlewisship/tapx-datefield

2013-01-07 Thread John
I've been using this component in my project and found that when the calendar pops up in IE8 it is a whole screen wide (it's fine in Chrome). Has anyone else seen this or know how to fix it. I'm thinking maybe it's a style element clash with something in my layout.css, and hoping the componenet

Session storage docs don't mention OptimizedSessionPersistedObject or ImmutableSessionPersistedObject

2013-01-07 Thread Lance Java
I've just noticed that the "session storage" docs don't mention OptimizedSessionPersistedObject or ImmutableSessionPersistedObject. Should I file a jira for this? Or is this covered elsewhere in the docs? http://tapestry.apache.org/session-storage.html http://tapestry.apache.org/current/apidocs/or

Re: Best way to store AJAX-changes of a select component

2013-01-07 Thread Stephan Windmüller
On 07.01.2013 10:57, Geoff Callender wrote: >> > Would it be possible to add the selection to the URL of the page >> > containing the search field? I am not sure about changing the activation >> > context with AJAX calls. > There should be no problem adding request parameters to the URL (even thou

Tapestry 5.1.0.5 Eventlink Zone Blackbird Error

2013-01-07 Thread chog
Hi, I've looked everywhere for a solution to this but I can't seem to find anything except for this, http://mail-archives.apache.org/mod_mbox/tapestry-users/201204.mbox/%3CCANQh_Dsoxef0tDb4S6RK3-wQyR=mJLhdRvOmE_7A=8vyxed...@mail.gmail.com%3E, which unfortunately isn't working for me. I have th

Re: Best way to store AJAX-changes of a select component

2013-01-07 Thread Stephan Windmüller
On 05.01.2013 11:14, Geoff Callender wrote: > Perhaps you could add some javascript of your own that watches for > changes in the Select, and appends the selected option to the url as a > query parameter. > > $T(spec.elementId).autocompleter.url = "?" + selected_option; > > In your PROVIDE

Re: Best way to store AJAX-changes of a select component

2013-01-07 Thread Stephan Windmüller
On 04.01.2013 17:43, Thiago H de Paula Figueiredo wrote: >> Is there a "best way" to store changes made by AJAX requests in the page? > Have you tried non-flash session persistence This would break tabbed browsing. If I change the selection in one tab, the search field in a second tab will also

Re: Way to display numeric pad for phone number field in tapestry

2013-01-07 Thread Geoff Callender
Try this (untested): ${phoneNumber} The Any components is documented on this page: http://tapestry.apache.org/component-reference.html Geoff On 07/01/2013, at 5:38 PM, karthi wrote: > Hi, > > What is the way to display numeric pad in smartphones for phone number > field. > >