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

2013-01-13 Thread Bob Harner
Lance, I've changed it so that the same "Clustering Issues" section is
now "included" (via a Confluence {include} tag) in both the Session
Storage and Persistent Page Data pages, since they apply to both.

On Mon, Jan 7, 2013 at 7:53 PM, Howard Lewis Ship  wrote:
> 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, 2013 at 10:41 AM, Lance Java wrote:
>>
>>> 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/org/apache/tapestry5/annotations/ImmutableSessionPersistedObject.html
>>>
>>> http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/OptimizedSessionPersistedObject.html
>>>
>>>
>>>
>>> --
>>> View this message in context:
>>> http://tapestry.1045711.n5.nabble.com/Session-storage-docs-don-t-mention-OptimizedSessionPersistedObject-or-ImmutableSessionPersistedObject-tp5719174.html
>>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>>> For additional commands, e-mail: users-h...@tapestry.apache.org
>>>
>>>
>>
>>
>> --
>> Howard M. Lewis Ship
>>
>> Creator of Apache Tapestry
>>
>> The source for Tapestry training, mentoring and support. Contact me to
>> learn how I can get you up and productive in Tapestry fast!
>>
>> (971) 678-5210
>> http://howardlewisship.com
>>
>
>
>
> --
> Howard M. Lewis Ship
>
> Creator of Apache Tapestry
>
> The source for Tapestry training, mentoring and support. Contact me to
> learn how I can get you up and productive in Tapestry fast!
>
> (971) 678-5210
> http://howardlewisship.com

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Can't get Tapestry 5.4-alpha-2 jQuery Support to work

2013-01-13 Thread Serge Eby
Surprisingly, I don't get Prototype. Are you sure you are using the
"official" 5.4-alpha-2 and not a local build?
FWIW, I have the following  in my Layout component (as I use bootstrap):


@Import( stack = { InternalConstants.CORE_STACK_NAME },
 stylesheet = {
"${tapestry.bootstrap-root}/css/bootstrap-responsive.css",
"context:styles/style.css",
"context:styles/t5-override.css"},
 library = { "context:scripts/lib/plugins/jquery.cookie.js" }
)
public class Layout {

//

@Inject
private JavaScriptSupport jsSupport;


// 
void afterRender() {
jsSupport.require("bootstrap");
}

}



My AppModule has a @SubModule(EnableJQueryModule.class) based on the code
you referenced earlier (same as putting them in the AppModule as you did).

This works for me and I don't see any reference to Prototype.


HTH,

/Serge



--
View this message in context: 
http://tapestry-users.832.n2.nabble.com/Can-t-get-Tapestry-5-4-alpha-2-jQuery-Support-to-work-tp7584477p7584483.html
Sent from the Tapestry Users mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



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

2013-01-13 Thread Geoff Callender
As penance, I've created an HTML5 Input Types example! The telephone keypad 
comes up just fine on my phone:


http://jumpstart.doublenegative.com.au/jumpstart/examples/component/html5inputtypes

Cheers,

Geoff

On 08/01/2013, at 7:34 AM, Geoff Callender wrote:

> 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.apache.org/jira/browse/TAP5-1787
>> 
>> If you are using a previous version you can create a mixing to force
>> the "type" attribute.
>> Take a look at the MarkupChanger mixin in this thread:
>> http://tapestry.1045711.n5.nabble.com/Snippet-T5-A-mixin-to-rewrite-the-markup-of-element-td4479439.html
>> 
>> Cheers.
>> Alejandro.
>> 
>> 
>> On Mon, Jan 7, 2013 at 9:04 AM, Geoff Callender
>>  wrote:
>>> 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.
 
 Here I searched & found that
 
 type="tel" & type="number" will work out
 
 but in tapestry it shows error :
 
 Unable to resolve 'tel' to a component class name
 Unable to resolve 'number' to a component class name
 
 Can anyone please tell me when user comes to & clicks phone number field,
 number pad needs to display?
 
 Regards,
 Karthi.
 
 
 
 --
 View this message in context: 
 http://tapestry.1045711.n5.nabble.com/Way-to-display-numeric-pad-for-phone-number-field-in-tapestry-tp5719166.html
 Sent from the Tapestry - User mailing list archive at Nabble.com.
 
 -
 To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
 For additional commands, e-mail: users-h...@tapestry.apache.org
 
>>> 
>>> 
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>>> For additional commands, e-mail: users-h...@tapestry.apache.org
>>> 
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>> For additional commands, e-mail: users-h...@tapestry.apache.org
>> 
> 


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org