<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-340</id>
	<title>Nabble - Tapestry - User</title>
	<updated>2009-11-25T10:32:48Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Tapestry---User-f340.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tapestry---User-f340.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26517999</id>
	<title>Res: Change Event on Select Component</title>
	<published>2009-11-25T10:32:48Z</published>
	<updated>2009-11-25T10:32:48Z</updated>
	<author>
		<name>Everton Agner</name>
	</author>
	<content type="html">For this situation, that would be a workaround... 
&lt;br&gt;&lt;br&gt;I think I'll add ChenilleKit core dependency to the project (and later for the Library) and use the OnEvent mixin for properly handling Change event on Select components...
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;Everton
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;De: Ilya Obshadko &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ilya.obshadko@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: Tapestry users &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Enviadas: Quarta-feira, 25 de Novembro de 2009 15:35:03
&lt;br&gt;Assunto: Re: Change Event on Select Component
&lt;br&gt;&lt;br&gt;You need to simluate submit button click, so you could clearly separate form
&lt;br&gt;events.
&lt;br&gt;&lt;br&gt;A few days before I posted complete mixin code for similar issue.
&lt;br&gt;If you cannot find it in archives, let me know - I could send the source.
&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 8:08 PM, Everton Agner
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;everton_agner@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks for the answers.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I thought I could do it without forcing form submission, like I said with
&lt;br&gt;&amp;gt; the &amp;quot;onChange&amp;quot; manipulation in the page Class (that i think it uses Ajax).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The form submission that you said works fine, but I have a problem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Like I said, I'm creating a component that renders this Select component
&lt;br&gt;&amp;gt; for Locale Changing. I'll show a bit of the code for Login page, Layout
&lt;br&gt;&amp;gt; component and LocaleSwitcher component so I can explain the problem after
&lt;br&gt;&amp;gt; it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Layout component (Template)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;html ...&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;t:localeSwitcher /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;t:body /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;lt;/html&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Login page (Template)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;t:layout ...&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;t:form t:id=&amp;quot;loginForm&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;/t:form&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/t:layout&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Login page (Class)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; @Component
&lt;br&gt;&amp;gt; private Form loginForm;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; void onValidateForm(){
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - LocaleSwitcher component (Template)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;t:form t:id=&amp;quot;localeSwitcherForm&amp;quot; ...&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;t:select t:id=&amp;quot;locales&amp;quot; model=&amp;quot;locales&amp;quot; value=&amp;quot;locale&amp;quot;
&lt;br&gt;&amp;gt; onChange=&amp;quot;this.form.submit()&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/t:form&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - LocaleSwitcher component (Class)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; @Component
&lt;br&gt;&amp;gt; private Form localeSwitcherForm;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; void onValidateFormFromLocaleSwitcherForm(){
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, when i fire the onChange() event of the Select component, the
&lt;br&gt;&amp;gt; localeSwitcherForm is submitted, and the
&lt;br&gt;&amp;gt; onValidateFormFromLocaleSwitcherForm() method is called in the component
&lt;br&gt;&amp;gt; Class. After that, because my Login page Class has a generic
&lt;br&gt;&amp;gt; onValidateForm() method, it is also fired too, and then weird things
&lt;br&gt;&amp;gt; happens.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, i always need to implement specific submission lifecycle methods for my
&lt;br&gt;&amp;gt; Forms in every new Page I create (because the Page is inside the Layout that
&lt;br&gt;&amp;gt; renders my LocaleSwitcher component).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And if I want to package this component in a Library, this will happen with
&lt;br&gt;&amp;gt; anyone that tries to use id, and it will be confused for them.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I hope I could explain this problem clearly...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And again, if there is another way I could treat the &amp;quot;change&amp;quot; Event of my
&lt;br&gt;&amp;gt; Select Component without this form submission, this new problem would be
&lt;br&gt;&amp;gt; avoided...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Everton
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ________________________________
&lt;br&gt;&amp;gt; De: Bryan Lewis &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jbryanlewis@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Para: Tapestry users &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Enviadas: Quarta-feira, 25 de Novembro de 2009 13:14:47
&lt;br&gt;&amp;gt; Assunto: Re: Change Event on Select Component
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It's on page 225 of my paper copy. &amp;nbsp; A simple bit of javascript:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;t:select value=&amp;quot;selectedLocale&amp;quot; ... onchange=&amp;quot;this.form.submit()&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Wed, Nov 25, 2009 at 9:49 AM, Jim O'Callaghan &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jc1000001@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I had a requirement to do this previously and used the example provided
&lt;br&gt;&amp;gt; in
&lt;br&gt;&amp;gt; &amp;gt; Tapestry 5: Building Web Applications, around page 281 - the book (or at
&lt;br&gt;&amp;gt; &amp;gt; least excerpts) is available on the net I think if you Google - no point
&lt;br&gt;&amp;gt; in
&lt;br&gt;&amp;gt; &amp;gt; me pasting a code example, as my code is heavily customised. &amp;nbsp;Hope this
&lt;br&gt;&amp;gt; &amp;gt; helps.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; Jim.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt; From: Everton Agner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;everton_agner@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; &amp;gt; Sent: 25 November 2009 13:37
&lt;br&gt;&amp;gt; &amp;gt; To: Tapestry Users
&lt;br&gt;&amp;gt; &amp;gt; Subject: Change Event on Select Component
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Which is the simplier way to capture the &amp;quot;onChange&amp;quot; event of a Select
&lt;br&gt;&amp;gt; &amp;gt; component and treat it in the page Class on the appropriate Event
&lt;br&gt;&amp;gt; Handler?
&lt;br&gt;&amp;gt; &amp;gt; My goal is to create a Component that renders a Select component to
&lt;br&gt;&amp;gt; locale
&lt;br&gt;&amp;gt; &amp;gt; switching.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I only could do that (in another situation) using the &amp;quot;ZoneUpdater&amp;quot; mixin
&lt;br&gt;&amp;gt; &amp;gt; in
&lt;br&gt;&amp;gt; &amp;gt; the Select... And I found that i could do it with the &amp;quot;OnEvent&amp;quot; mixin of
&lt;br&gt;&amp;gt; &amp;gt; Chenille... But I can't do it without the mixins?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks!
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Everton
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;______________________________________________________________________
&lt;br&gt;&amp;gt; &amp;gt; ______________
&lt;br&gt;&amp;gt; &amp;gt; Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517999&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;____________________________________________________________________________________
&lt;br&gt;&amp;gt; Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ilya Obshadko
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ____________________________________________________________________________________
&lt;br&gt;Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Change-Event-on-Select-Component-tp26512746p26517999.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26517080</id>
	<title>Re: Change Event on Select Component</title>
	<published>2009-11-25T09:35:03Z</published>
	<updated>2009-11-25T09:35:03Z</updated>
	<author>
		<name>Ilya Obshadko-2</name>
	</author>
	<content type="html">You need to simluate submit button click, so you could clearly separate form
&lt;br&gt;events.
&lt;br&gt;&lt;br&gt;A few days before I posted complete mixin code for similar issue.
&lt;br&gt;If you cannot find it in archives, let me know - I could send the source.
&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 8:08 PM, Everton Agner
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517080&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;everton_agner@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks for the answers.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I thought I could do it without forcing form submission, like I said with
&lt;br&gt;&amp;gt; the &amp;quot;onChange&amp;quot; manipulation in the page Class (that i think it uses Ajax).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The form submission that you said works fine, but I have a problem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Like I said, I'm creating a component that renders this Select component
&lt;br&gt;&amp;gt; for Locale Changing. I'll show a bit of the code for Login page, Layout
&lt;br&gt;&amp;gt; component and LocaleSwitcher component so I can explain the problem after
&lt;br&gt;&amp;gt; it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Layout component (Template)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;html ...&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;t:localeSwitcher /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;t:body /&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;lt;/html&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Login page (Template)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;t:layout ...&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;t:form t:id=&amp;quot;loginForm&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;/t:form&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/t:layout&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Login page (Class)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; @Component
&lt;br&gt;&amp;gt; private Form loginForm;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; void onValidateForm(){
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - LocaleSwitcher component (Template)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;t:form t:id=&amp;quot;localeSwitcherForm&amp;quot; ...&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;t:select t:id=&amp;quot;locales&amp;quot; model=&amp;quot;locales&amp;quot; value=&amp;quot;locale&amp;quot;
&lt;br&gt;&amp;gt; onChange=&amp;quot;this.form.submit()&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/t:form&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - LocaleSwitcher component (Class)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; @Component
&lt;br&gt;&amp;gt; private Form localeSwitcherForm;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; void onValidateFormFromLocaleSwitcherForm(){
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, when i fire the onChange() event of the Select component, the
&lt;br&gt;&amp;gt; localeSwitcherForm is submitted, and the
&lt;br&gt;&amp;gt; onValidateFormFromLocaleSwitcherForm() method is called in the component
&lt;br&gt;&amp;gt; Class. After that, because my Login page Class has a generic
&lt;br&gt;&amp;gt; onValidateForm() method, it is also fired too, and then weird things
&lt;br&gt;&amp;gt; happens.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So, i always need to implement specific submission lifecycle methods for my
&lt;br&gt;&amp;gt; Forms in every new Page I create (because the Page is inside the Layout that
&lt;br&gt;&amp;gt; renders my LocaleSwitcher component).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And if I want to package this component in a Library, this will happen with
&lt;br&gt;&amp;gt; anyone that tries to use id, and it will be confused for them.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I hope I could explain this problem clearly...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And again, if there is another way I could treat the &amp;quot;change&amp;quot; Event of my
&lt;br&gt;&amp;gt; Select Component without this form submission, this new problem would be
&lt;br&gt;&amp;gt; avoided...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Everton
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ________________________________
&lt;br&gt;&amp;gt; De: Bryan Lewis &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517080&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jbryanlewis@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Para: Tapestry users &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517080&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Enviadas: Quarta-feira, 25 de Novembro de 2009 13:14:47
&lt;br&gt;&amp;gt; Assunto: Re: Change Event on Select Component
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It's on page 225 of my paper copy. &amp;nbsp; A simple bit of javascript:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;t:select value=&amp;quot;selectedLocale&amp;quot; ... onchange=&amp;quot;this.form.submit()&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Wed, Nov 25, 2009 at 9:49 AM, Jim O'Callaghan &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517080&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jc1000001@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I had a requirement to do this previously and used the example provided
&lt;br&gt;&amp;gt; in
&lt;br&gt;&amp;gt; &amp;gt; Tapestry 5: Building Web Applications, around page 281 - the book (or at
&lt;br&gt;&amp;gt; &amp;gt; least excerpts) is available on the net I think if you Google - no point
&lt;br&gt;&amp;gt; in
&lt;br&gt;&amp;gt; &amp;gt; me pasting a code example, as my code is heavily customised. &amp;nbsp;Hope this
&lt;br&gt;&amp;gt; &amp;gt; helps.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; Jim.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt; From: Everton Agner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517080&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;everton_agner@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; &amp;gt; Sent: 25 November 2009 13:37
&lt;br&gt;&amp;gt; &amp;gt; To: Tapestry Users
&lt;br&gt;&amp;gt; &amp;gt; Subject: Change Event on Select Component
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Which is the simplier way to capture the &amp;quot;onChange&amp;quot; event of a Select
&lt;br&gt;&amp;gt; &amp;gt; component and treat it in the page Class on the appropriate Event
&lt;br&gt;&amp;gt; Handler?
&lt;br&gt;&amp;gt; &amp;gt; My goal is to create a Component that renders a Select component to
&lt;br&gt;&amp;gt; locale
&lt;br&gt;&amp;gt; &amp;gt; switching.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I only could do that (in another situation) using the &amp;quot;ZoneUpdater&amp;quot; mixin
&lt;br&gt;&amp;gt; &amp;gt; in
&lt;br&gt;&amp;gt; &amp;gt; the Select... And I found that i could do it with the &amp;quot;OnEvent&amp;quot; mixin of
&lt;br&gt;&amp;gt; &amp;gt; Chenille... But I can't do it without the mixins?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks!
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Everton
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;______________________________________________________________________
&lt;br&gt;&amp;gt; &amp;gt; ______________
&lt;br&gt;&amp;gt; &amp;gt; Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517080&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26517080&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;____________________________________________________________________________________
&lt;br&gt;&amp;gt; Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ilya Obshadko
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Change-Event-on-Select-Component-tp26512746p26517080.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26516553</id>
	<title>Res: Change Event on Select Component</title>
	<published>2009-11-25T09:08:59Z</published>
	<updated>2009-11-25T09:08:59Z</updated>
	<author>
		<name>Everton Agner</name>
	</author>
	<content type="html">Thanks for the answers.
&lt;br&gt;&lt;br&gt;I thought I could do it without forcing form submission, like I said with the &amp;quot;onChange&amp;quot; manipulation in the page Class (that i think it uses Ajax).
&lt;br&gt;&lt;br&gt;The form submission that you said works fine, but I have a problem.
&lt;br&gt;&lt;br&gt;Like I said, I'm creating a component that renders this Select component for Locale Changing. I'll show a bit of the code for Login page, Layout component and LocaleSwitcher component so I can explain the problem after it.
&lt;br&gt;&lt;br&gt;- Layout component (Template)
&lt;br&gt;&lt;br&gt;&amp;lt;html ...&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;t:localeSwitcher /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;t:body /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;lt;/html&amp;gt;
&lt;br&gt;&lt;br&gt;- Login page (Template)
&lt;br&gt;&lt;br&gt;&amp;lt;t:layout ...&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;t:form t:id=&amp;quot;loginForm&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/t:form&amp;gt;
&lt;br&gt;&amp;lt;/t:layout&amp;gt;
&lt;br&gt;&lt;br&gt;- Login page (Class)
&lt;br&gt;&lt;br&gt;@Component
&lt;br&gt;private Form loginForm;
&lt;br&gt;&lt;br&gt;void onValidateForm(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;- LocaleSwitcher component (Template)
&lt;br&gt;&lt;br&gt;&amp;lt;t:form t:id=&amp;quot;localeSwitcherForm&amp;quot; ...&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;t:select t:id=&amp;quot;locales&amp;quot; model=&amp;quot;locales&amp;quot; value=&amp;quot;locale&amp;quot; onChange=&amp;quot;this.form.submit()&amp;quot; /&amp;gt;
&lt;br&gt;&amp;lt;/t:form&amp;gt;
&lt;br&gt;&lt;br&gt;- LocaleSwitcher component (Class)
&lt;br&gt;&lt;br&gt;&lt;br&gt;@Component
&lt;br&gt;private Form localeSwitcherForm;
&lt;br&gt;&lt;br&gt;void onValidateFormFromLocaleSwitcherForm(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;---
&lt;br&gt;&lt;br&gt;So, when i fire the onChange() event of the Select component, the localeSwitcherForm is submitted, and the onValidateFormFromLocaleSwitcherForm() method is called in the component Class. After that, because my Login page Class has a generic onValidateForm() method, it is also fired too, and then weird things happens.
&lt;br&gt;&lt;br&gt;So, i always need to implement specific submission lifecycle methods for my Forms in every new Page I create (because the Page is inside the Layout that renders my LocaleSwitcher component).
&lt;br&gt;&lt;br&gt;And if I want to package this component in a Library, this will happen with anyone that tries to use id, and it will be confused for them.
&lt;br&gt;&lt;br&gt;I hope I could explain this problem clearly...
&lt;br&gt;&lt;br&gt;And again, if there is another way I could treat the &amp;quot;change&amp;quot; Event of my Select Component without this form submission, this new problem would be avoided...
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;Everton
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;________________________________
&lt;br&gt;De: Bryan Lewis &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516553&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jbryanlewis@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: Tapestry users &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516553&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Enviadas: Quarta-feira, 25 de Novembro de 2009 13:14:47
&lt;br&gt;Assunto: Re: Change Event on Select Component
&lt;br&gt;&lt;br&gt;It's on page 225 of my paper copy. &amp;nbsp; A simple bit of javascript:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;t:select value=&amp;quot;selectedLocale&amp;quot; ... onchange=&amp;quot;this.form.submit()&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 9:49 AM, Jim O'Callaghan &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516553&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jc1000001@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I had a requirement to do this previously and used the example provided in
&lt;br&gt;&amp;gt; Tapestry 5: Building Web Applications, around page 281 - the book (or at
&lt;br&gt;&amp;gt; least excerpts) is available on the net I think if you Google - no point in
&lt;br&gt;&amp;gt; me pasting a code example, as my code is heavily customised. &amp;nbsp;Hope this
&lt;br&gt;&amp;gt; helps.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Jim.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Everton Agner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516553&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;everton_agner@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: 25 November 2009 13:37
&lt;br&gt;&amp;gt; To: Tapestry Users
&lt;br&gt;&amp;gt; Subject: Change Event on Select Component
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Which is the simplier way to capture the &amp;quot;onChange&amp;quot; event of a Select
&lt;br&gt;&amp;gt; component and treat it in the page Class on the appropriate Event Handler?
&lt;br&gt;&amp;gt; My goal is to create a Component that renders a Select component to locale
&lt;br&gt;&amp;gt; switching.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I only could do that (in another situation) using the &amp;quot;ZoneUpdater&amp;quot; mixin
&lt;br&gt;&amp;gt; in
&lt;br&gt;&amp;gt; the Select... And I found that i could do it with the &amp;quot;OnEvent&amp;quot; mixin of
&lt;br&gt;&amp;gt; Chenille... But I can't do it without the mixins?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Everton
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;______________________________________________________________________
&lt;br&gt;&amp;gt; ______________
&lt;br&gt;&amp;gt; Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516553&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26516553&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ____________________________________________________________________________________
&lt;br&gt;Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Change-Event-on-Select-Component-tp26512746p26516553.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515438</id>
	<title>Re: Spindle for Tapestry 5?</title>
	<published>2009-11-25T08:07:32Z</published>
	<updated>2009-11-25T08:07:32Z</updated>
	<author>
		<name>Juan E. Maya</name>
	</author>
	<content type="html">U can check this: &lt;a href=&quot;http://code.google.com/p/loom-t5/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://code.google.com/p/loom-t5/&lt;/a&gt;&lt;br&gt;I've personally never used it &amp;nbsp;but i know of some colleagues who use it.
&lt;br&gt;&lt;br&gt;There are also some eclipse code templates on the wiki:
&lt;br&gt;&lt;a href=&quot;http://wiki.apache.org/tapestry/Tapestry5HowToEclipseCodeTemplates&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.apache.org/tapestry/Tapestry5HowToEclipseCodeTemplates&lt;/a&gt;&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 3:24 PM, Alessandro Bottoni
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515438&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alexbottoni@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi All,
&lt;br&gt;&amp;gt; what do you use for generating .tml empty files and other standard T5
&lt;br&gt;&amp;gt; stuff in Eclipse 3.5?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Googling around, I found Spindle (&lt;a href=&quot;http://spindle.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://spindle.sourceforge.net/&lt;/a&gt;) but
&lt;br&gt;&amp;gt; it seems that its development was stopped at the time of the Tapestry 3
&lt;br&gt;&amp;gt; version and that there is not any plan to support more recent versions
&lt;br&gt;&amp;gt; of the Framework.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is there any other pluging for eclipse? Any other kind of support, at
&lt;br&gt;&amp;gt; least at the level of a simple file-templates library?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for your attention.
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Alessandro Bottoni
&lt;br&gt;&amp;gt; Website: &lt;a href=&quot;http://www.alessandrobottoni.it/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.alessandrobottoni.it/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;quot;If man hasn't discovered something that he will die for, he isn't fit
&lt;br&gt;&amp;gt; to live.&amp;quot;
&lt;br&gt;&amp;gt;     -- Martin Luther King
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515438&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515438&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515438&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515438&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spindle-for-Tapestry-5--tp26513516p26515438.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26515835</id>
	<title>Re: Validation failing in IE6/7</title>
	<published>2009-11-25T08:02:24Z</published>
	<updated>2009-11-25T08:02:24Z</updated>
	<author>
		<name>Andrew Miller-14</name>
	</author>
	<content type="html">Hello again,
&lt;br&gt;&lt;br&gt;I'm extremely happy to close this one off. I _finally_ found the source
&lt;br&gt;of the problem today.
&lt;br&gt;&lt;br&gt;As it turns out, the lightbox solution I was using was including its own
&lt;br&gt;version of effects.js which was quite old - and conflicting with the one
&lt;br&gt;already provided by Tapestry.
&lt;br&gt;&lt;br&gt;Once I removed it, everything started working perfectly.
&lt;br&gt;&lt;br&gt;Drew
&lt;br&gt;&lt;br&gt;On Mon, 2009-11-23 at 16:42 +0000, Andrew Miller wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've taken a look and it's definitely within a form element. The problem
&lt;br&gt;&amp;gt; appears to be that tapestry.js isn't adding that function to the
&lt;br&gt;&amp;gt; element, IE6/7 complains thus:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	Error: Object doesn't support this property or method
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Interestingly, IE8 was making the exact same complaint until I upgraded
&lt;br&gt;&amp;gt; Prototype to the latest version - now it works perfectly. This seems to
&lt;br&gt;&amp;gt; suggest it's a problem (or some sort of conflict) with Prototype, but
&lt;br&gt;&amp;gt; I'm still at a complete loss as to why.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Drew
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Mon, 2009-11-23 at 05:16 -0800, Howard Lewis Ship wrote:
&lt;br&gt;&amp;gt; &amp;gt; That seems very odd, as Tapestry (i.e., tapestry.js) will create the
&lt;br&gt;&amp;gt; &amp;gt; Tapestry.FormEventManager object if it does not already exist. Could
&lt;br&gt;&amp;gt; &amp;gt; it be because the field in question is not contained within a form?
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; On Mon, Nov 23, 2009 at 4:45 AM, Andrew Miller &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515835&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andrewm@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I've done a bit more digging on this and I made a mistake in my original
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; assumption:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; The failure occurs during the Tapestry.init function. I've traced the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; javascript execution through and I've found the exact line it's failing
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; on - during the call to the Tapestry.Initializer.validate function, it's
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; failing on this line:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(field.form).getFormEventManager();
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; and stepping through the function it's specifically failing within the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; $() call! In prototype.js, when it comes to returning the extended
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; element (last line of the $() function):
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; return Element.extend(element);
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; it fails and goes to the try/catch statement of Enumerable.each.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; This isn't where the function is failing - it's actually failing on the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; call to getFormEventManager(). I've done some further double- and
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; triple-checking to make sure I'm right and this time I'm certain.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Apologies for the mistake.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Can anyone explain why this function wouldn't be available on this
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; element? I've read through the code and I can't see what would be
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; stopping these from being added to the element, but as it's only IE6/7
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; that's failing it could be something I'm completely overlooking.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Does anyone have any ideas?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Thanks again,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Drew
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515835&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515835&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515835&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515835&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515835&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26515835&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Validation-failing-in-IE6-7-tp26405879p26515835.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26514480</id>
	<title>Re: Change Event on Select Component</title>
	<published>2009-11-25T07:14:47Z</published>
	<updated>2009-11-25T07:14:47Z</updated>
	<author>
		<name>Bryan Lewis-5</name>
	</author>
	<content type="html">It's on page 225 of my paper copy. &amp;nbsp; A simple bit of javascript:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;t:select value=&amp;quot;selectedLocale&amp;quot; ... onchange=&amp;quot;this.form.submit()&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 9:49 AM, Jim O'Callaghan &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26514480&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jc1000001@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I had a requirement to do this previously and used the example provided in
&lt;br&gt;&amp;gt; Tapestry 5: Building Web Applications, around page 281 - the book (or at
&lt;br&gt;&amp;gt; least excerpts) is available on the net I think if you Google - no point in
&lt;br&gt;&amp;gt; me pasting a code example, as my code is heavily customised. &amp;nbsp;Hope this
&lt;br&gt;&amp;gt; helps.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; Jim.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Everton Agner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26514480&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;everton_agner@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: 25 November 2009 13:37
&lt;br&gt;&amp;gt; To: Tapestry Users
&lt;br&gt;&amp;gt; Subject: Change Event on Select Component
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Which is the simplier way to capture the &amp;quot;onChange&amp;quot; event of a Select
&lt;br&gt;&amp;gt; component and treat it in the page Class on the appropriate Event Handler?
&lt;br&gt;&amp;gt; My goal is to create a Component that renders a Select component to locale
&lt;br&gt;&amp;gt; switching.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I only could do that (in another situation) using the &amp;quot;ZoneUpdater&amp;quot; mixin
&lt;br&gt;&amp;gt; in
&lt;br&gt;&amp;gt; the Select... And I found that i could do it with the &amp;quot;OnEvent&amp;quot; mixin of
&lt;br&gt;&amp;gt; Chenille... But I can't do it without the mixins?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Everton
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;______________________________________________________________________
&lt;br&gt;&amp;gt; ______________
&lt;br&gt;&amp;gt; Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26514480&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26514480&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Change-Event-on-Select-Component-tp26512746p26514480.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513948</id>
	<title>RE: Change Event on Select Component</title>
	<published>2009-11-25T06:49:45Z</published>
	<updated>2009-11-25T06:49:45Z</updated>
	<author>
		<name>jc1001</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I had a requirement to do this previously and used the example provided in
&lt;br&gt;Tapestry 5: Building Web Applications, around page 281 - the book (or at
&lt;br&gt;least excerpts) is available on the net I think if you Google - no point in
&lt;br&gt;me pasting a code example, as my code is heavily customised. &amp;nbsp;Hope this
&lt;br&gt;helps.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Jim.
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Everton Agner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513948&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;everton_agner@...&lt;/a&gt;]
&lt;br&gt;Sent: 25 November 2009 13:37
&lt;br&gt;To: Tapestry Users
&lt;br&gt;Subject: Change Event on Select Component
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;Which is the simplier way to capture the &amp;quot;onChange&amp;quot; event of a Select
&lt;br&gt;component and treat it in the page Class on the appropriate Event Handler?
&lt;br&gt;My goal is to create a Component that renders a Select component to locale
&lt;br&gt;switching.
&lt;br&gt;&lt;br&gt;I only could do that (in another situation) using the &amp;quot;ZoneUpdater&amp;quot; mixin in
&lt;br&gt;the Select... And I found that i could do it with the &amp;quot;OnEvent&amp;quot; mixin of
&lt;br&gt;Chenille... But I can't do it without the mixins?
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;Everton
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________________________________
&lt;br&gt;______________
&lt;br&gt;Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513948&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513948&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Change-Event-on-Select-Component-tp26512746p26513948.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26513516</id>
	<title>Spindle for Tapestry 5?</title>
	<published>2009-11-25T06:24:20Z</published>
	<updated>2009-11-25T06:24:20Z</updated>
	<author>
		<name>Alessandro Bottoni-4</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;what do you use for generating .tml empty files and other standard T5
&lt;br&gt;stuff in Eclipse 3.5?
&lt;br&gt;&lt;br&gt;Googling around, I found Spindle (&lt;a href=&quot;http://spindle.sourceforge.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://spindle.sourceforge.net/&lt;/a&gt;) but
&lt;br&gt;it seems that its development was stopped at the time of the Tapestry 3
&lt;br&gt;version and that there is not any plan to support more recent versions
&lt;br&gt;of the Framework.
&lt;br&gt;&lt;br&gt;Is there any other pluging for eclipse? Any other kind of support, at
&lt;br&gt;least at the level of a simple file-templates library?
&lt;br&gt;&lt;br&gt;Thanks for your attention.
&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;Alessandro Bottoni
&lt;br&gt;Website: &lt;a href=&quot;http://www.alessandrobottoni.it/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.alessandrobottoni.it/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;quot;If man hasn't discovered something that he will die for, he isn't fit
&lt;br&gt;to live.&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;-- Martin Luther King
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513516&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26513516&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spindle-for-Tapestry-5--tp26513516p26513516.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26512746</id>
	<title>Change Event on Select Component</title>
	<published>2009-11-25T05:36:47Z</published>
	<updated>2009-11-25T05:36:47Z</updated>
	<author>
		<name>Everton Agner</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Which is the simplier way to capture the &amp;quot;onChange&amp;quot; event of a Select component and treat it in the page Class on the appropriate Event Handler? My goal is to create a Component that renders a Select component to locale switching.
&lt;br&gt;&lt;br&gt;I only could do that (in another situation) using the &amp;quot;ZoneUpdater&amp;quot; mixin in the Select... And I found that i could do it with the &amp;quot;OnEvent&amp;quot; mixin of Chenille... But I can't do it without the mixins?
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;Everton
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ____________________________________________________________________________________
&lt;br&gt;Veja quais são os assuntos do momento no Yahoo! +Buscados
&lt;br&gt;&lt;a href=&quot;http://br.maisbuscados.yahoo.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://br.maisbuscados.yahoo.com&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Change-Event-on-Select-Component-tp26512746p26512746.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26511492</id>
	<title>Re: Form submitions without t:formdata</title>
	<published>2009-11-25T03:57:41Z</published>
	<updated>2009-11-25T03:57:41Z</updated>
	<author>
		<name>Ed Bowler</name>
	</author>
	<content type="html">On Tue, 24 Nov 2009 17:29:26 -0000, Thiago H. de Paula Figueiredo &amp;nbsp;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511492&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thiagohp@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; You can't use Tapestry components to do this, but you can easily @Inject &amp;nbsp;
&lt;br&gt;&amp;gt; the Request and its List&amp;lt;String&amp;gt; getParameterNames() and String &amp;nbsp;
&lt;br&gt;&amp;gt; getParameter(String name) methods to get what was submitted.
&lt;br&gt;&lt;br&gt;That's useful information right there, thanks. &amp;nbsp;I have used the &amp;nbsp;
&lt;br&gt;PageAttached annotation to run a method and parse the request if it's a &amp;nbsp;
&lt;br&gt;post, since I couldn't find a doPost sort of method. &amp;nbsp;It's only about 15 &amp;nbsp;
&lt;br&gt;lines of code, and it works.
&lt;br&gt;&lt;br&gt;Many thanks,
&lt;br&gt;&lt;br&gt;Ed
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511492&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26511492&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Form-submitions-without-t%3Aformdata-tp26499997p26511492.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26510775</id>
	<title>blackbird.js amended for Tap 5.1.0.5 - IE background fixed issue</title>
	<published>2009-11-25T02:54:22Z</published>
	<updated>2009-11-25T02:54:22Z</updated>
	<author>
		<name>jc1001</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I hope this is the correct list to ask this of. &amp;nbsp;I'm having an issue with
&lt;br&gt;Tapestry 5.1.0.5 and a background image not scrolling with the rest of a
&lt;br&gt;page, just in IE. &amp;nbsp;The offending function is from blackbird.js, function
&lt;br&gt;backgroundImage() - the script comments indicate it has been heavily
&lt;br&gt;modified to for Tapestry, though perhaps this query would be better
&lt;br&gt;addressed &amp;nbsp;to the blackbird forum - if so please advise.
&lt;br&gt;&lt;br&gt;This issue has been mentioned previously elsewhere:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/TextField-component-and-body-background-attachement-td&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/TextField-component-and-body-background-attachement-td&lt;/a&gt;&lt;br&gt;24463036.html#a24476651
&lt;br&gt;&lt;br&gt;... though I was not able to find any resolution related to the post. &amp;nbsp;I'm
&lt;br&gt;currently using a workaround to exclude blackbird.js that is a modified
&lt;br&gt;version of the approach at:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/How-to-prevent-scriptaculous-and-or-protype-javascript&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/How-to-prevent-scriptaculous-and-or-protype-javascript&lt;/a&gt;&lt;br&gt;-libs-from-being-used-by-page-to24687790.html#a24687790
&lt;br&gt;&lt;br&gt;... though would rather find out the correct approach to fixing the problem,
&lt;br&gt;and under what circumstances I might be using blackbird - from what I
&lt;br&gt;understand it is a client-side debugging utility? &amp;nbsp;I note from this post:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://article.gmane.org/gmane.comp.java.tapestry.user/71893&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://article.gmane.org/gmane.comp.java.tapestry.user/71893&lt;/a&gt;&amp;nbsp;that it is
&lt;br&gt;required for client-side reporting of communication errors and also that
&lt;br&gt;there are implications for IE reporting of secure/non-secure content. &amp;nbsp;Would
&lt;br&gt;be grateful for a steer. Thanks.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Jim.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/blackbird.js-amended-for-Tap-5.1.0.5---IE-background-fixed-issue-tp26510775p26510775.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26506759</id>
	<title>Re: Tapestry and JMeter</title>
	<published>2009-11-24T18:44:32Z</published>
	<updated>2009-11-24T18:44:32Z</updated>
	<author>
		<name>I Wayan Saryada-2</name>
	</author>
	<content type="html">Hi Andreas,
&lt;br&gt;&lt;br&gt;I've installed charles proxy and captured both the request parameters sent
&lt;br&gt;by web browser and JMeter. I've found out that the request sent by the
&lt;br&gt;browser is encoded, on the other hand I didn't encode the request parameters
&lt;br&gt;sent by JMeter. After telling JMeter to encode the parameters the Tapestry
&lt;br&gt;form loaded correctly.
&lt;br&gt;&lt;br&gt;Thanks for your guidance.
&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 8:43 AM, Andreas Andreou &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Either that, or jmeter doesn't have the correct values to send... try
&lt;br&gt;&amp;gt; to capture
&lt;br&gt;&amp;gt; and compare the requests - perhaps through a servlet filter? (a proxy such
&lt;br&gt;&amp;gt; charles can also help debug this)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Wed, Nov 25, 2009 at 1:55 AM, I Wayan Saryada
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;saryada.wayan@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Yes, I did a post request to the tapestry application. Does it mean that
&lt;br&gt;&amp;gt; &amp;gt; jmeter didn't send the hidden field correctly?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Wed, Nov 25, 2009 at 6:41 AM, Andreas Andreou &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Well, somehow the hidden fields are arriving modified / cropped to the
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; tapestry application.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Did you setup jmeter to do a post?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; On Tue, Nov 24, 2009 at 1:16 PM, I Wayan Saryada
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;saryada.wayan@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; I'm trying to do a load test on some of my Tapestry pages using
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; JMeter. I create an http request from JMeter to submit the form and
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; passes all the required input field value including the hidden field
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; that contains value like formids, seedids, etc.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; When submitting the form from a browser it works just fine. But I got
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; the following error on the response page returned to JMeter.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; [ +/- ] Exception: Unable to decode stream: invalid bit length repeat
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; org.apache.hivemind.ApplicationRuntimeException
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; [ +/- ] Exception: invalid bit length repeat
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; java.util.zip.ZipException
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Stack Trace:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; java.util.zip.InflaterInputStream.read(InflaterInputStream.java:165)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; java.util.zip.GZIPInputStream.read(GZIPInputStream.java:111)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.fill(BufferedInputStream.java:229)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.read1(BufferedInputStream.java:267)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.read(BufferedInputStream.java:324)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$PeekInputStream.read(ObjectInputStream.java:2232)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2245)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2713)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:765)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; java.io.ObjectInputStream.&amp;lt;init&amp;gt;(ObjectInputStream.java:283)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.util.io.CompressedDataEncoder.decodeString(CompressedDataEncoder.java:110)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.RequestCycle.initializeIdState(RequestCycle.java:683)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.form.FormSupportImpl.reinitializeIdAllocatorForRewind(FormSupportImpl.java:456)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.form.FormSupportImpl.rewind(FormSupportImpl.java:622)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.renderComponent(Form.java:196)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:724)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.services.impl.DefaultResponseBuilder.render(DefaultResponseBuilder.java:187)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.rewind(Form.java:269)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.RequestCycle.rewindForm(RequestCycle.java:469)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.trigger(Form.java:280)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.DirectService.triggerComponent(DirectService.java:166)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.DirectService.service(DirectService.java:142)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Any information that might help me?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; I Wayan Saryada
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.kodejava.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.kodejava.org&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Andreas Andreou - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt; - &lt;a href=&quot;http://blog.andyhot.gr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.andyhot.gr&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Tapestry / Tacos developer
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Open Source / JEE Consulting
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; I Wayan Saryada
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Andreas Andreou - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt; - &lt;a href=&quot;http://blog.andyhot.gr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.andyhot.gr&lt;/a&gt;&lt;br&gt;&amp;gt; Tapestry / Tacos developer
&lt;br&gt;&amp;gt; Open Source / JEE Consulting
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26506759&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tapestry-and-JMeter-tp26494172p26506759.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26505793</id>
	<title>Re: Tapestry and JMeter</title>
	<published>2009-11-24T16:43:37Z</published>
	<updated>2009-11-24T16:43:37Z</updated>
	<author>
		<name>Andreas Andreou-4</name>
	</author>
	<content type="html">Either that, or jmeter doesn't have the correct values to send... try
&lt;br&gt;to capture
&lt;br&gt;and compare the requests - perhaps through a servlet filter? (a proxy such
&lt;br&gt;charles can also help debug this)
&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 1:55 AM, I Wayan Saryada
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;saryada.wayan@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Yes, I did a post request to the tapestry application. Does it mean that
&lt;br&gt;&amp;gt; jmeter didn't send the hidden field correctly?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Wed, Nov 25, 2009 at 6:41 AM, Andreas Andreou &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Well, somehow the hidden fields are arriving modified / cropped to the
&lt;br&gt;&amp;gt;&amp;gt; tapestry application.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Did you setup jmeter to do a post?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Tue, Nov 24, 2009 at 1:16 PM, I Wayan Saryada
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;saryada.wayan@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I'm trying to do a load test on some of my Tapestry pages using
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; JMeter. I create an http request from JMeter to submit the form and
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; passes all the required input field value including the hidden field
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; that contains value like formids, seedids, etc.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; When submitting the form from a browser it works just fine. But I got
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; the following error on the response page returned to JMeter.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; [ +/- ] Exception: Unable to decode stream: invalid bit length repeat
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.hivemind.ApplicationRuntimeException
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; [ +/- ] Exception: invalid bit length repeat
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; java.util.zip.ZipException
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Stack Trace:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; java.util.zip.InflaterInputStream.read(InflaterInputStream.java:165)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; java.util.zip.GZIPInputStream.read(GZIPInputStream.java:111)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.fill(BufferedInputStream.java:229)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.read1(BufferedInputStream.java:267)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.read(BufferedInputStream.java:324)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; java.io.ObjectInputStream$PeekInputStream.read(ObjectInputStream.java:2232)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2245)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2713)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:765)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; java.io.ObjectInputStream.&amp;lt;init&amp;gt;(ObjectInputStream.java:283)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; org.apache.tapestry.util.io.CompressedDataEncoder.decodeString(CompressedDataEncoder.java:110)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; org.apache.tapestry.engine.RequestCycle.initializeIdState(RequestCycle.java:683)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; org.apache.tapestry.form.FormSupportImpl.reinitializeIdAllocatorForRewind(FormSupportImpl.java:456)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.form.FormSupportImpl.rewind(FormSupportImpl.java:622)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.renderComponent(Form.java:196)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:724)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; org.apache.tapestry.services.impl.DefaultResponseBuilder.render(DefaultResponseBuilder.java:187)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.rewind(Form.java:269)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.engine.RequestCycle.rewindForm(RequestCycle.java:469)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.trigger(Form.java:280)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; org.apache.tapestry.engine.DirectService.triggerComponent(DirectService.java:166)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; org.apache.tapestry.engine.DirectService.service(DirectService.java:142)
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Any information that might help me?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I Wayan Saryada
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.kodejava.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.kodejava.org&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Andreas Andreou - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt; - &lt;a href=&quot;http://blog.andyhot.gr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.andyhot.gr&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Tapestry / Tacos developer
&lt;br&gt;&amp;gt;&amp;gt; Open Source / JEE Consulting
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; I Wayan Saryada
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andreas Andreou - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt; - &lt;a href=&quot;http://blog.andyhot.gr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.andyhot.gr&lt;/a&gt;&lt;br&gt;Tapestry / Tacos developer
&lt;br&gt;Open Source / JEE Consulting
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505793&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tapestry-and-JMeter-tp26494172p26505793.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26505410</id>
	<title>Re: Tapestry and JMeter</title>
	<published>2009-11-24T15:55:38Z</published>
	<updated>2009-11-24T15:55:38Z</updated>
	<author>
		<name>I Wayan Saryada-2</name>
	</author>
	<content type="html">Yes, I did a post request to the tapestry application. Does it mean that
&lt;br&gt;jmeter didn't send the hidden field correctly?
&lt;br&gt;&lt;br&gt;On Wed, Nov 25, 2009 at 6:41 AM, Andreas Andreou &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505410&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Well, somehow the hidden fields are arriving modified / cropped to the
&lt;br&gt;&amp;gt; tapestry application.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Did you setup jmeter to do a post?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Nov 24, 2009 at 1:16 PM, I Wayan Saryada
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505410&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;saryada.wayan@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I'm trying to do a load test on some of my Tapestry pages using
&lt;br&gt;&amp;gt; &amp;gt; JMeter. I create an http request from JMeter to submit the form and
&lt;br&gt;&amp;gt; &amp;gt; passes all the required input field value including the hidden field
&lt;br&gt;&amp;gt; &amp;gt; that contains value like formids, seedids, etc.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; When submitting the form from a browser it works just fine. But I got
&lt;br&gt;&amp;gt; &amp;gt; the following error on the response page returned to JMeter.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; [ +/- ] Exception: Unable to decode stream: invalid bit length repeat
&lt;br&gt;&amp;gt; &amp;gt; org.apache.hivemind.ApplicationRuntimeException
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; [ +/- ] Exception: invalid bit length repeat
&lt;br&gt;&amp;gt; &amp;gt; java.util.zip.ZipException
&lt;br&gt;&amp;gt; &amp;gt; Stack Trace:
&lt;br&gt;&amp;gt; &amp;gt; java.util.zip.InflaterInputStream.read(InflaterInputStream.java:165)
&lt;br&gt;&amp;gt; &amp;gt; java.util.zip.GZIPInputStream.read(GZIPInputStream.java:111)
&lt;br&gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.fill(BufferedInputStream.java:229)
&lt;br&gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.read1(BufferedInputStream.java:267)
&lt;br&gt;&amp;gt; &amp;gt; java.io.BufferedInputStream.read(BufferedInputStream.java:324)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$PeekInputStream.read(ObjectInputStream.java:2232)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2245)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2713)
&lt;br&gt;&amp;gt; &amp;gt; java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:765)
&lt;br&gt;&amp;gt; &amp;gt; java.io.ObjectInputStream.&amp;lt;init&amp;gt;(ObjectInputStream.java:283)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.util.io.CompressedDataEncoder.decodeString(CompressedDataEncoder.java:110)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.RequestCycle.initializeIdState(RequestCycle.java:683)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.form.FormSupportImpl.reinitializeIdAllocatorForRewind(FormSupportImpl.java:456)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.tapestry.form.FormSupportImpl.rewind(FormSupportImpl.java:622)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.renderComponent(Form.java:196)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:724)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.services.impl.DefaultResponseBuilder.render(DefaultResponseBuilder.java:187)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.rewind(Form.java:269)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.tapestry.engine.RequestCycle.rewindForm(RequestCycle.java:469)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.tapestry.form.Form.trigger(Form.java:280)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.DirectService.triggerComponent(DirectService.java:166)
&lt;br&gt;&amp;gt; &amp;gt; org.apache.tapestry.engine.DirectService.service(DirectService.java:142)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Any information that might help me?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; I Wayan Saryada
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.kodejava.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.kodejava.org&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505410&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505410&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Andreas Andreou - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505410&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt; - &lt;a href=&quot;http://blog.andyhot.gr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.andyhot.gr&lt;/a&gt;&lt;br&gt;&amp;gt; Tapestry / Tacos developer
&lt;br&gt;&amp;gt; Open Source / JEE Consulting
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505410&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26505410&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Regards,
&lt;br&gt;I Wayan Saryada
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tapestry-and-JMeter-tp26494172p26505410.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26504555</id>
	<title>Re: Tapestry and JMeter</title>
	<published>2009-11-24T14:41:00Z</published>
	<updated>2009-11-24T14:41:00Z</updated>
	<author>
		<name>Andreas Andreou-4</name>
	</author>
	<content type="html">Well, somehow the hidden fields are arriving modified / cropped to the
&lt;br&gt;tapestry application.
&lt;br&gt;&lt;br&gt;Did you setup jmeter to do a post?
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 1:16 PM, I Wayan Saryada
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26504555&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;saryada.wayan@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm trying to do a load test on some of my Tapestry pages using
&lt;br&gt;&amp;gt; JMeter. I create an http request from JMeter to submit the form and
&lt;br&gt;&amp;gt; passes all the required input field value including the hidden field
&lt;br&gt;&amp;gt; that contains value like formids, seedids, etc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When submitting the form from a browser it works just fine. But I got
&lt;br&gt;&amp;gt; the following error on the response page returned to JMeter.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [ +/- ] Exception: Unable to decode stream: invalid bit length repeat
&lt;br&gt;&amp;gt; org.apache.hivemind.ApplicationRuntimeException
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [ +/- ] Exception: invalid bit length repeat
&lt;br&gt;&amp;gt; java.util.zip.ZipException
&lt;br&gt;&amp;gt; Stack Trace:
&lt;br&gt;&amp;gt; java.util.zip.InflaterInputStream.read(InflaterInputStream.java:165)
&lt;br&gt;&amp;gt; java.util.zip.GZIPInputStream.read(GZIPInputStream.java:111)
&lt;br&gt;&amp;gt; java.io.BufferedInputStream.fill(BufferedInputStream.java:229)
&lt;br&gt;&amp;gt; java.io.BufferedInputStream.read1(BufferedInputStream.java:267)
&lt;br&gt;&amp;gt; java.io.BufferedInputStream.read(BufferedInputStream.java:324)
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$PeekInputStream.read(ObjectInputStream.java:2232)
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2245)
&lt;br&gt;&amp;gt; java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2713)
&lt;br&gt;&amp;gt; java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:765)
&lt;br&gt;&amp;gt; java.io.ObjectInputStream.&amp;lt;init&amp;gt;(ObjectInputStream.java:283)
&lt;br&gt;&amp;gt; org.apache.tapestry.util.io.CompressedDataEncoder.decodeString(CompressedDataEncoder.java:110)
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.RequestCycle.initializeIdState(RequestCycle.java:683)
&lt;br&gt;&amp;gt; org.apache.tapestry.form.FormSupportImpl.reinitializeIdAllocatorForRewind(FormSupportImpl.java:456)
&lt;br&gt;&amp;gt; org.apache.tapestry.form.FormSupportImpl.rewind(FormSupportImpl.java:622)
&lt;br&gt;&amp;gt; org.apache.tapestry.form.Form.renderComponent(Form.java:196)
&lt;br&gt;&amp;gt; org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:724)
&lt;br&gt;&amp;gt; org.apache.tapestry.services.impl.DefaultResponseBuilder.render(DefaultResponseBuilder.java:187)
&lt;br&gt;&amp;gt; org.apache.tapestry.form.Form.rewind(Form.java:269)
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.RequestCycle.rewindForm(RequestCycle.java:469)
&lt;br&gt;&amp;gt; org.apache.tapestry.form.Form.trigger(Form.java:280)
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.DirectService.triggerComponent(DirectService.java:166)
&lt;br&gt;&amp;gt; org.apache.tapestry.engine.DirectService.service(DirectService.java:142)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any information that might help me?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; I Wayan Saryada
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.kodejava.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.kodejava.org&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26504555&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26504555&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Andreas Andreou - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26504555&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andyhot@...&lt;/a&gt; - &lt;a href=&quot;http://blog.andyhot.gr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.andyhot.gr&lt;/a&gt;&lt;br&gt;Tapestry / Tacos developer
&lt;br&gt;Open Source / JEE Consulting
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26504555&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26504555&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tapestry-and-JMeter-tp26494172p26504555.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26502876</id>
	<title>Re: Combining Javascript doesn't work with libraries like TinyMCE</title>
	<published>2009-11-24T12:38:54Z</published>
	<updated>2009-11-24T12:38:54Z</updated>
	<author>
		<name>Thiago H. de Paula Figueiredo</name>
	</author>
	<content type="html">Em Tue, 24 Nov 2009 18:25:10 -0200, Howard Lewis Ship &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502876&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hlship@...&lt;/a&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;escreveu:
&lt;br&gt;&lt;br&gt;&amp;gt; I'm picturing this as a new form of the @IncludeJavascript annotation
&lt;br&gt;&amp;gt; that allows new options to be included, such as browser type (i.e.,
&lt;br&gt;&amp;gt; build that comment thingey around the &amp;lt;script&amp;gt; tag) and combine=false.
&lt;br&gt;&lt;br&gt;Would it be a new annotation or just adding properties to &amp;nbsp;
&lt;br&gt;@IncludeJavascript?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Thiago H. de Paula Figueiredo
&lt;br&gt;Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, &amp;nbsp;
&lt;br&gt;and instructor
&lt;br&gt;Owner, software architect and developer, Ars Machina Tecnologia da &amp;nbsp;
&lt;br&gt;Informação Ltda.
&lt;br&gt;&lt;a href=&quot;http://www.arsmachina.com.br&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.arsmachina.com.br&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502876&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502876&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Combining-Javascript-doesn%27t-work-with-libraries-like-TinyMCE-tp26485941p26502876.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26502687</id>
	<title>Re: Combining Javascript doesn't work with libraries like TinyMCE</title>
	<published>2009-11-24T12:25:10Z</published>
	<updated>2009-11-24T12:25:10Z</updated>
	<author>
		<name>Howard Lewis Ship</name>
	</author>
	<content type="html">I'm picturing this as a new form of the @IncludeJavascript annotation
&lt;br&gt;that allows new options to be included, such as browser type (i.e.,
&lt;br&gt;build that comment thingey around the &amp;lt;script&amp;gt; tag) and combine=false.
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 12:02 PM, Josh Canfield &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;josh@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; However, I think the ticket should still be considered.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Definitely.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Nov (i.e.24, 2009 at 7:07 AM, raulmt &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;raulmt@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This is a good workaround, thanks.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This won't work when the textarea with TinyMCE is loaded from an Ajax
&lt;br&gt;&amp;gt;&amp;gt; request, though. Nevertheless, the problem shouldn't arise when the script
&lt;br&gt;&amp;gt;&amp;gt; is loaded from an Ajax request, so in case the request is an Ajax request,
&lt;br&gt;&amp;gt;&amp;gt; you can include it with RenderSupport as usual and if it is not, then use
&lt;br&gt;&amp;gt;&amp;gt; the form you just described. Thanks, Josh, that should do the trick.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; However, I think the ticket should still be considered. Including a script
&lt;br&gt;&amp;gt;&amp;gt; that doens't work when combined with others is not a very &amp;quot;rare case&amp;quot;, so
&lt;br&gt;&amp;gt;&amp;gt; built-in support without recurring to workarounds would be really helpful.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Regards.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Josh Canfield wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Here is a workaround that I used in my tinymce mixin.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; void afterRender(MarkupWriter writer) {
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;         // inject script in a non-combinable way
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;         final String scriptelementid = &amp;quot;tinymce-script&amp;quot;;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;         final Element src =
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; writer.getDocument().getElementById(scriptelementid);
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;         if (src == null) {
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;             final String path =
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _symbolSource.valueForSymbol(&amp;quot;tinymce&amp;quot;) + &amp;quot;/tiny_mce.js&amp;quot;;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;             final Asset asset =
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _assetSource.getAsset(_resources.getBaseResource(), path,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; _resources.getLocale());
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;             Element dest = writer.getDocument().find(&amp;quot;html/head&amp;quot;);
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;             if (dest != null) {
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;                 dest.element(&amp;quot;script&amp;quot;, &amp;quot;src&amp;quot;, asset.toClientURL(),
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;id&amp;quot;, scriptelementid);
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;             }
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;         }
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Josh
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Nov 23, 2009 at 1:13 PM, raulmt &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;raulmt@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Combining Javascripts feature in T5.1 is great, but sadly I had to
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; disable
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; it. I use TinyMCE and this library uses its own path (where tiny_mce.js
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;lives&amp;quot;) to load other files that are needed (themes, languages, etc.).
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; The
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; problem arises when tiny_mce.js is in the combined virtual asset because
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; it
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; doesn't find any script tag with itself as the src so TinyMCE can't
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; figure
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; out the path to load the other assets.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I think there should be a way to specify that some scripts should not be
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; combined because sometimes (like in this case) is a must have... &amp;quot;all or
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; nothing&amp;quot; isn't optimal. I looked into the Tapestry code and doesn't seem
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; be possible currently... is there a way? should I post a ticket in jira
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; about per-script combining configuration?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Regards.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4054005.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4054005.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Sent from the Tapestry Users mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; TheDailyTube.com. Sign up and get the best new videos on the internet
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; delivered fresh to your inbox.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; View this message in context: &lt;a href=&quot;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4058340.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4058340.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Sent from the Tapestry Users mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; TheDailyTube.com. Sign up and get the best new videos on the internet
&lt;br&gt;&amp;gt; delivered fresh to your inbox.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Howard M. Lewis Ship
&lt;br&gt;&lt;br&gt;Creator of Apache Tapestry
&lt;br&gt;&lt;br&gt;The source for Tapestry training, mentoring and support. Contact me to
&lt;br&gt;learn how I can get you up and productive in Tapestry fast!
&lt;br&gt;&lt;br&gt;(971) 678-5210
&lt;br&gt;&lt;a href=&quot;http://howardlewisship.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://howardlewisship.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=11&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502687&amp;i=12&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Combining-Javascript-doesn%27t-work-with-libraries-like-TinyMCE-tp26485941p26502687.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26502369</id>
	<title>Re: Combining Javascript doesn't work with libraries like TinyMCE</title>
	<published>2009-11-24T12:02:21Z</published>
	<updated>2009-11-24T12:02:21Z</updated>
	<author>
		<name>joshcanfield</name>
	</author>
	<content type="html">&amp;gt; However, I think the ticket should still be considered.
&lt;br&gt;&lt;br&gt;Definitely.
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 7:07 AM, raulmt &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;raulmt@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This is a good workaround, thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This won't work when the textarea with TinyMCE is loaded from an Ajax
&lt;br&gt;&amp;gt; request, though. Nevertheless, the problem shouldn't arise when the script
&lt;br&gt;&amp;gt; is loaded from an Ajax request, so in case the request is an Ajax request,
&lt;br&gt;&amp;gt; you can include it with RenderSupport as usual and if it is not, then use
&lt;br&gt;&amp;gt; the form you just described. Thanks, Josh, that should do the trick.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; However, I think the ticket should still be considered. Including a script
&lt;br&gt;&amp;gt; that doens't work when combined with others is not a very &amp;quot;rare case&amp;quot;, so
&lt;br&gt;&amp;gt; built-in support without recurring to workarounds would be really helpful.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Josh Canfield wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Here is a workaround that I used in my tinymce mixin.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; void afterRender(MarkupWriter writer) {
&lt;br&gt;&amp;gt;&amp;gt;         // inject script in a non-combinable way
&lt;br&gt;&amp;gt;&amp;gt;         final String scriptelementid = &amp;quot;tinymce-script&amp;quot;;
&lt;br&gt;&amp;gt;&amp;gt;         final Element src =
&lt;br&gt;&amp;gt;&amp;gt; writer.getDocument().getElementById(scriptelementid);
&lt;br&gt;&amp;gt;&amp;gt;         if (src == null) {
&lt;br&gt;&amp;gt;&amp;gt;             final String path =
&lt;br&gt;&amp;gt;&amp;gt; _symbolSource.valueForSymbol(&amp;quot;tinymce&amp;quot;) + &amp;quot;/tiny_mce.js&amp;quot;;
&lt;br&gt;&amp;gt;&amp;gt;             final Asset asset =
&lt;br&gt;&amp;gt;&amp;gt; _assetSource.getAsset(_resources.getBaseResource(), path,
&lt;br&gt;&amp;gt;&amp;gt; _resources.getLocale());
&lt;br&gt;&amp;gt;&amp;gt;             Element dest = writer.getDocument().find(&amp;quot;html/head&amp;quot;);
&lt;br&gt;&amp;gt;&amp;gt;             if (dest != null) {
&lt;br&gt;&amp;gt;&amp;gt;                 dest.element(&amp;quot;script&amp;quot;, &amp;quot;src&amp;quot;, asset.toClientURL(),
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;id&amp;quot;, scriptelementid);
&lt;br&gt;&amp;gt;&amp;gt;             }
&lt;br&gt;&amp;gt;&amp;gt;         }
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Josh
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Nov 23, 2009 at 1:13 PM, raulmt &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;raulmt@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Combining Javascripts feature in T5.1 is great, but sadly I had to
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; disable
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; it. I use TinyMCE and this library uses its own path (where tiny_mce.js
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;quot;lives&amp;quot;) to load other files that are needed (themes, languages, etc.).
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; The
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; problem arises when tiny_mce.js is in the combined virtual asset because
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; it
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; doesn't find any script tag with itself as the src so TinyMCE can't
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; figure
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; out the path to load the other assets.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I think there should be a way to specify that some scripts should not be
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; combined because sometimes (like in this case) is a must have... &amp;quot;all or
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; nothing&amp;quot; isn't optimal. I looked into the Tapestry code and doesn't seem
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; be possible currently... is there a way? should I post a ticket in jira
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; about per-script combining configuration?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Regards.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4054005.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4054005.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sent from the Tapestry Users mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; TheDailyTube.com. Sign up and get the best new videos on the internet
&lt;br&gt;&amp;gt;&amp;gt; delivered fresh to your inbox.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4058340.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4058340.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Tapestry Users mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;--
&lt;br&gt;TheDailyTube.com. Sign up and get the best new videos on the internet
&lt;br&gt;delivered fresh to your inbox.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502369&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Combining-Javascript-doesn%27t-work-with-libraries-like-TinyMCE-tp26485941p26502369.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26500128</id>
	<title>Re: Form submitions without t:formdata</title>
	<published>2009-11-24T09:29:26Z</published>
	<updated>2009-11-24T09:29:26Z</updated>
	<author>
		<name>Thiago H. de Paula Figueiredo</name>
	</author>
	<content type="html">Em Tue, 24 Nov 2009 15:22:12 -0200, Ed Bowler &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26500128&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ed.bowler@...&lt;/a&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;escreveu:
&lt;br&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&lt;br&gt;Hi!
&lt;br&gt;&lt;br&gt;&amp;gt; I am new to tapestry, and am generally impressed by how clean it makes &amp;nbsp;
&lt;br&gt;&amp;gt; our code, but have got stuck on a seemingly simple problem. &amp;nbsp;I have to &amp;nbsp;
&lt;br&gt;&amp;gt; implement a page as part of a tapestry 5.1 application, that responds to &amp;nbsp;
&lt;br&gt;&amp;gt; a specific post request (in order to integrate with another system). I &amp;nbsp;
&lt;br&gt;&amp;gt; cannot control the fields that this system will send my page.
&lt;br&gt;&lt;br&gt;You can't use Tapestry components to do this, but you can easily @Inject &amp;nbsp;
&lt;br&gt;the Request and its List&amp;lt;String&amp;gt; getParameterNames() and String &amp;nbsp;
&lt;br&gt;getParameter(String name) methods to get what was submitted.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Thiago H. de Paula Figueiredo
&lt;br&gt;Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, &amp;nbsp;
&lt;br&gt;and instructor
&lt;br&gt;Owner, software architect and developer, Ars Machina Tecnologia da &amp;nbsp;
&lt;br&gt;Informação Ltda.
&lt;br&gt;&lt;a href=&quot;http://www.arsmachina.com.br&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.arsmachina.com.br&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26500128&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26500128&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Form-submitions-without-t%3Aformdata-tp26499997p26500128.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499997</id>
	<title>Form submitions without t:formdata</title>
	<published>2009-11-24T09:22:12Z</published>
	<updated>2009-11-24T09:22:12Z</updated>
	<author>
		<name>Ed Bowler</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I am new to tapestry, and am generally impressed by how clean it makes our &amp;nbsp;
&lt;br&gt;code, but have got stuck on a seemingly simple problem. &amp;nbsp;I have to &amp;nbsp;
&lt;br&gt;implement a page as part of a tapestry 5.1 application, that responds to a &amp;nbsp;
&lt;br&gt;specific post request (in order to integrate with another system). &amp;nbsp;I &amp;nbsp;
&lt;br&gt;cannot control the fields that this system will send my page. &amp;nbsp;It would &amp;nbsp;
&lt;br&gt;also be useful to have an html form for testing purposes that I can play &amp;nbsp;
&lt;br&gt;with to simulate the external system posting information to our system. &amp;nbsp; 
&lt;br&gt;However, when I use the tapestry form component, it refuses to respond to &amp;nbsp;
&lt;br&gt;a post request that doesn't contain the t:formdata, that is created in the &amp;nbsp;
&lt;br&gt;generated html. &amp;nbsp;How do I correctly respond to this post?
&lt;br&gt;&lt;br&gt;Many thanks for your help,
&lt;br&gt;&lt;br&gt;Ed
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499997&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499997&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Form-submitions-without-t%3Aformdata-tp26499997p26499997.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499990</id>
	<title>Re: injecting services in the module</title>
	<published>2009-11-24T09:21:51Z</published>
	<updated>2009-11-24T09:21:51Z</updated>
	<author>
		<name>Alfonso Quiroga</name>
	</author>
	<content type="html">Great idea :) thanks
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 2:18 PM, Howard Lewis Ship &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499990&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hlship@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; You can inject into your advise method simply by providing additional
&lt;br&gt;&amp;gt; parameters on the advise method.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Nov 24, 2009 at 9:01 AM, Alfonso Quiroga &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499990&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alfonsosebaq@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Is it possible to inject a service in a module? I am *advising*
&lt;br&gt;&amp;gt;&amp;gt; application methods... and I need to use a service. If I do:
&lt;br&gt;&amp;gt;&amp;gt;        @Inject private GeneralService generalService;
&lt;br&gt;&amp;gt;&amp;gt; in the module... it gets &amp;quot;null&amp;quot; when the advisor executes.. any
&lt;br&gt;&amp;gt;&amp;gt; workaround? thanks
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499990&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499990&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Howard M. Lewis Ship
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Creator of Apache Tapestry
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The source for Tapestry training, mentoring and support. Contact me to
&lt;br&gt;&amp;gt; learn how I can get you up and productive in Tapestry fast!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; (971) 678-5210
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://howardlewisship.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://howardlewisship.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499990&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499990&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499990&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499990&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/injecting-services-in-the-module-tp26499581p26499990.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499884</id>
	<title>Re: injecting services in the module</title>
	<published>2009-11-24T09:18:10Z</published>
	<updated>2009-11-24T09:18:10Z</updated>
	<author>
		<name>Howard Lewis Ship</name>
	</author>
	<content type="html">You can inject into your advise method simply by providing additional
&lt;br&gt;parameters on the advise method.
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 9:01 AM, Alfonso Quiroga &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499884&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alfonsosebaq@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Is it possible to inject a service in a module? I am *advising*
&lt;br&gt;&amp;gt; application methods... and I need to use a service. If I do:
&lt;br&gt;&amp;gt;        @Inject private GeneralService generalService;
&lt;br&gt;&amp;gt; in the module... it gets &amp;quot;null&amp;quot; when the advisor executes.. any
&lt;br&gt;&amp;gt; workaround? thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499884&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499884&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Howard M. Lewis Ship
&lt;br&gt;&lt;br&gt;Creator of Apache Tapestry
&lt;br&gt;&lt;br&gt;The source for Tapestry training, mentoring and support. Contact me to
&lt;br&gt;learn how I can get you up and productive in Tapestry fast!
&lt;br&gt;&lt;br&gt;(971) 678-5210
&lt;br&gt;&lt;a href=&quot;http://howardlewisship.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://howardlewisship.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499884&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499884&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/injecting-services-in-the-module-tp26499581p26499884.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499870</id>
	<title>Re: Question to HLS: Separate Tapestry-IOC mailing list or forum or  any other point of connection?</title>
	<published>2009-11-24T09:16:59Z</published>
	<updated>2009-11-24T09:16:59Z</updated>
	<author>
		<name>Howard Lewis Ship</name>
	</author>
	<content type="html">I don't think the number of T5 IoC messages really warrants it.
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 6:30 AM, alebu &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499870&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aleboo@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Howard,
&lt;br&gt;&amp;gt; Are there any posibility that there will be a separate mailing list or
&lt;br&gt;&amp;gt; forum maybe explicitly for Tapestry-IOC? I can explain my interest in
&lt;br&gt;&amp;gt; it. In the past I have quite serious experience with Tapestry 4 (and
&lt;br&gt;&amp;gt; not the bad one). So, Hivemind was a required knowledge to be
&lt;br&gt;&amp;gt; effective with T4. Since that time I was looking (for self
&lt;br&gt;&amp;gt; improvement) on Spring and later to Guice, and I should say that ideas
&lt;br&gt;&amp;gt; behind the Hivemind are still unique. No one is there and no one even
&lt;br&gt;&amp;gt; tried to go there. Tapestry 5 bring us a Tapestry-IOC as part of it,
&lt;br&gt;&amp;gt; but because it is an independent Maven project it can be used without
&lt;br&gt;&amp;gt; Tapestry easily. Actually, in Tapestry-IOC documentation you mentioned
&lt;br&gt;&amp;gt; that it was a problem to keep two independent project (Tapestry 4 and
&lt;br&gt;&amp;gt; Hivemind) in synch, but thanks to Maven they are still there - fully
&lt;br&gt;&amp;gt; independant from technical point of view. I also remember previews of
&lt;br&gt;&amp;gt; Hivemind 2 and I should say that perhaps Tapestry-IOC is just a rework
&lt;br&gt;&amp;gt; of it. There were no new concepts introduced in Tapestry-IOC since
&lt;br&gt;&amp;gt; Hivemind, only approach for description of them changed drastically.
&lt;br&gt;&amp;gt; Old XML based syntax is missed, but today is probably not so
&lt;br&gt;&amp;gt; important. I hardly believe that Hivemind is still used anywhere
&lt;br&gt;&amp;gt; except where Tapestry 4 is. I am not agitating for releasing
&lt;br&gt;&amp;gt; Tapestry-IOC as a separate product, it is good for me having is as a
&lt;br&gt;&amp;gt; part of whatever, until it will be easily accesible with maven (as it
&lt;br&gt;&amp;gt; is possible now). But I am not using Tapestry 5 and it seems that
&lt;br&gt;&amp;gt; there are no changes form me to do it in the nearest future. But I
&lt;br&gt;&amp;gt; like Tapestry-IOC and want to go deep into it, maybe exchange my
&lt;br&gt;&amp;gt; knowledge and code with other interested people. Because many thinks
&lt;br&gt;&amp;gt; can be done in this direction - common services, interceptors, etc.
&lt;br&gt;&amp;gt; For this reason, having a separate mailing list just for it would be
&lt;br&gt;&amp;gt; very nice.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; P.S. Anyway, thanks for yours wanderful project, which makes my brain
&lt;br&gt;&amp;gt; to boil up a little :) Appliyng Tapestry-IOC is a big pleasure for me!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499870&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499870&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Howard M. Lewis Ship
&lt;br&gt;&lt;br&gt;Creator of Apache Tapestry
&lt;br&gt;&lt;br&gt;The source for Tapestry training, mentoring and support. Contact me to
&lt;br&gt;learn how I can get you up and productive in Tapestry fast!
&lt;br&gt;&lt;br&gt;(971) 678-5210
&lt;br&gt;&lt;a href=&quot;http://howardlewisship.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://howardlewisship.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499870&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499870&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Question-to-HLS%3A-Separate-Tapestry-IOC-mailing-list-or-forum-or-any--other-point-of-connection--tp26496887p26499870.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26499581</id>
	<title>injecting services in the module</title>
	<published>2009-11-24T09:01:32Z</published>
	<updated>2009-11-24T09:01:32Z</updated>
	<author>
		<name>Alfonso Quiroga</name>
	</author>
	<content type="html">Is it possible to inject a service in a module? I am *advising*
&lt;br&gt;application methods... and I need to use a service. If I do:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @Inject private GeneralService generalService;
&lt;br&gt;in the module... it gets &amp;quot;null&amp;quot; when the advisor executes.. any
&lt;br&gt;workaround? thanks
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499581&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26499581&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/injecting-services-in-the-module-tp26499581p26499581.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26497906</id>
	<title>Re: determine current page context from component</title>
	<published>2009-11-24T07:25:40Z</published>
	<updated>2009-11-24T07:25:40Z</updated>
	<author>
		<name>Ilya Obshadko-2</name>
	</author>
	<content type="html">Thanks, it worked.
&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 5:17 PM, Thiago H. de Paula Figueiredo &amp;lt;
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497906&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;thiagohp@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Em Tue, 24 Nov 2009 09:07:53 -0200, Ilya Obshadko &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497906&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ilya.obshadko@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; escreveu:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;Is there a way to determine current page context from within a component?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; AFAIK no.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;Use case: suppose you have a component that appears on every page and
&lt;br&gt;&amp;gt;&amp;gt; contains login form.
&lt;br&gt;&amp;gt;&amp;gt; It is obviously desirable to return to the same page with the same context
&lt;br&gt;&amp;gt;&amp;gt; after user submits logon information.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The component should check the session or some service for this
&lt;br&gt;&amp;gt; information, not get it from the page activation context.
&lt;br&gt;&amp;gt; Your login component could use the Request service to get the requested
&lt;br&gt;&amp;gt; URL, store it somewhere and then use it to the desired redirect.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Ilya Obshadko
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/determine-current-page-context-from-component-tp26494073p26497906.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26497510</id>
	<title>Re: Combining Javascript doesn't work with libraries like TinyMCE</title>
	<published>2009-11-24T07:07:03Z</published>
	<updated>2009-11-24T07:07:03Z</updated>
	<author>
		<name>raulmt</name>
	</author>
	<content type="html">&lt;br&gt;This is a good workaround, thanks.
&lt;br&gt;&lt;br&gt;This won't work when the textarea with TinyMCE is loaded from an Ajax
&lt;br&gt;request, though. Nevertheless, the problem shouldn't arise when the script
&lt;br&gt;is loaded from an Ajax request, so in case the request is an Ajax request,
&lt;br&gt;you can include it with RenderSupport as usual and if it is not, then use
&lt;br&gt;the form you just described. Thanks, Josh, that should do the trick.
&lt;br&gt;&lt;br&gt;However, I think the ticket should still be considered. Including a script
&lt;br&gt;that doens't work when combined with others is not a very &amp;quot;rare case&amp;quot;, so
&lt;br&gt;built-in support without recurring to workarounds would be really helpful.
&lt;br&gt;&lt;br&gt;Regards.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Josh Canfield wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here is a workaround that I used in my tinymce mixin.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; void afterRender(MarkupWriter writer) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // inject script in a non-combinable way
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; final String scriptelementid = &amp;quot;tinymce-script&amp;quot;;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; final Element src =
&lt;br&gt;&amp;gt; writer.getDocument().getElementById(scriptelementid);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (src == null) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; final String path =
&lt;br&gt;&amp;gt; _symbolSource.valueForSymbol(&amp;quot;tinymce&amp;quot;) + &amp;quot;/tiny_mce.js&amp;quot;;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; final Asset asset =
&lt;br&gt;&amp;gt; _assetSource.getAsset(_resources.getBaseResource(), path,
&lt;br&gt;&amp;gt; _resources.getLocale());
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Element dest = writer.getDocument().find(&amp;quot;html/head&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (dest != null) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dest.element(&amp;quot;script&amp;quot;, &amp;quot;src&amp;quot;, asset.toClientURL(),
&lt;br&gt;&amp;gt; &amp;quot;id&amp;quot;, scriptelementid);
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Josh
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Mon, Nov 23, 2009 at 1:13 PM, raulmt &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497510&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;raulmt@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Combining Javascripts feature in T5.1 is great, but sadly I had to
&lt;br&gt;&amp;gt;&amp;gt; disable
&lt;br&gt;&amp;gt;&amp;gt; it. I use TinyMCE and this library uses its own path (where tiny_mce.js
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;lives&amp;quot;) to load other files that are needed (themes, languages, etc.).
&lt;br&gt;&amp;gt;&amp;gt; The
&lt;br&gt;&amp;gt;&amp;gt; problem arises when tiny_mce.js is in the combined virtual asset because
&lt;br&gt;&amp;gt;&amp;gt; it
&lt;br&gt;&amp;gt;&amp;gt; doesn't find any script tag with itself as the src so TinyMCE can't
&lt;br&gt;&amp;gt;&amp;gt; figure
&lt;br&gt;&amp;gt;&amp;gt; out the path to load the other assets.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I think there should be a way to specify that some scripts should not be
&lt;br&gt;&amp;gt;&amp;gt; combined because sometimes (like in this case) is a must have... &amp;quot;all or
&lt;br&gt;&amp;gt;&amp;gt; nothing&amp;quot; isn't optimal. I looked into the Tapestry code and doesn't seem
&lt;br&gt;&amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt;&amp;gt; be possible currently... is there a way? should I post a ticket in jira
&lt;br&gt;&amp;gt;&amp;gt; about per-script combining configuration?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Regards.
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4054005.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4054005.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Sent from the Tapestry Users mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497510&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497510&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; TheDailyTube.com. Sign up and get the best new videos on the internet
&lt;br&gt;&amp;gt; delivered fresh to your inbox.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497510&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497510&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;View this message in context: &lt;a href=&quot;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4058340.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Combining-Javascript-doesn-t-work-with-libraries-like-TinyMCE-tp4054005p4058340.html&lt;/a&gt;&lt;br&gt;Sent from the Tapestry Users mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497510&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26497510&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Combining-Javascript-doesn%27t-work-with-libraries-like-TinyMCE-tp26485941p26497510.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26496887</id>
	<title>Question to HLS: Separate Tapestry-IOC mailing list or forum or any  other point of connection?</title>
	<published>2009-11-24T06:30:51Z</published>
	<updated>2009-11-24T06:30:51Z</updated>
	<author>
		<name>alebu</name>
	</author>
	<content type="html">Hi Howard,
&lt;br&gt;Are there any posibility that there will be a separate mailing list or
&lt;br&gt;forum maybe explicitly for Tapestry-IOC? I can explain my interest in
&lt;br&gt;it. In the past I have quite serious experience with Tapestry 4 (and
&lt;br&gt;not the bad one). So, Hivemind was a required knowledge to be
&lt;br&gt;effective with T4. Since that time I was looking (for self
&lt;br&gt;improvement) on Spring and later to Guice, and I should say that ideas
&lt;br&gt;behind the Hivemind are still unique. No one is there and no one even
&lt;br&gt;tried to go there. Tapestry 5 bring us a Tapestry-IOC as part of it,
&lt;br&gt;but because it is an independent Maven project it can be used without
&lt;br&gt;Tapestry easily. Actually, in Tapestry-IOC documentation you mentioned
&lt;br&gt;that it was a problem to keep two independent project (Tapestry 4 and
&lt;br&gt;Hivemind) in synch, but thanks to Maven they are still there - fully
&lt;br&gt;independant from technical point of view. I also remember previews of
&lt;br&gt;Hivemind 2 and I should say that perhaps Tapestry-IOC is just a rework
&lt;br&gt;of it. There were no new concepts introduced in Tapestry-IOC since
&lt;br&gt;Hivemind, only approach for description of them changed drastically.
&lt;br&gt;Old XML based syntax is missed, but today is probably not so
&lt;br&gt;important. I hardly believe that Hivemind is still used anywhere
&lt;br&gt;except where Tapestry 4 is. I am not agitating for releasing
&lt;br&gt;Tapestry-IOC as a separate product, it is good for me having is as a
&lt;br&gt;part of whatever, until it will be easily accesible with maven (as it
&lt;br&gt;is possible now). But I am not using Tapestry 5 and it seems that
&lt;br&gt;there are no changes form me to do it in the nearest future. But I
&lt;br&gt;like Tapestry-IOC and want to go deep into it, maybe exchange my
&lt;br&gt;knowledge and code with other interested people. Because many thinks
&lt;br&gt;can be done in this direction - common services, interceptors, etc.
&lt;br&gt;For this reason, having a separate mailing list just for it would be
&lt;br&gt;very nice.
&lt;br&gt;&lt;br&gt;P.S. Anyway, thanks for yours wanderful project, which makes my brain
&lt;br&gt;to boil up a little :) Appliyng Tapestry-IOC is a big pleasure for me!
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496887&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496887&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Question-to-HLS%3A-Separate-Tapestry-IOC-mailing-list-or-forum-or-any--other-point-of-connection--tp26496887p26496887.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26496683</id>
	<title>Re: determine current page context from component</title>
	<published>2009-11-24T06:17:58Z</published>
	<updated>2009-11-24T06:17:58Z</updated>
	<author>
		<name>Thiago H. de Paula Figueiredo</name>
	</author>
	<content type="html">Em Tue, 24 Nov 2009 09:07:53 -0200, Ilya Obshadko &amp;nbsp;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496683&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ilya.obshadko@...&lt;/a&gt;&amp;gt; escreveu:
&lt;br&gt;&lt;br&gt;&amp;gt; Is there a way to determine current page context from within a component?
&lt;br&gt;&lt;br&gt;AFAIK no.
&lt;br&gt;&lt;br&gt;&amp;gt; Use case: suppose you have a component that appears on every page and
&lt;br&gt;&amp;gt; contains login form.
&lt;br&gt;&amp;gt; It is obviously desirable to return to the same page with the same &amp;nbsp;
&lt;br&gt;&amp;gt; context after user submits logon information.
&lt;br&gt;&lt;br&gt;The component should check the session or some service for this &amp;nbsp;
&lt;br&gt;information, not get it from the page activation context.
&lt;br&gt;Your login component could use the Request service to get the requested &amp;nbsp;
&lt;br&gt;URL, store it somewhere and then use it to the desired redirect.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Thiago H. de Paula Figueiredo
&lt;br&gt;Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, &amp;nbsp;
&lt;br&gt;and instructor
&lt;br&gt;Owner, software architect and developer, Ars Machina Tecnologia da &amp;nbsp;
&lt;br&gt;Informação Ltda.
&lt;br&gt;&lt;a href=&quot;http://www.arsmachina.com.br&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.arsmachina.com.br&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496683&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496683&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/determine-current-page-context-from-component-tp26494073p26496683.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26496008</id>
	<title>Re: &quot;Object expected error&quot; with prototype.js and IE 8</title>
	<published>2009-11-24T05:37:32Z</published>
	<updated>2009-11-24T05:37:32Z</updated>
	<author>
		<name>Inge Solvoll-2</name>
	</author>
	<content type="html">On the other hand, the page below loads perfectly in my IE8, and it contains
&lt;br&gt;complex javascript using prototype.js, even the older version. I have also
&lt;br&gt;tested without tapx-prototype, no change.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajaxonevent&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jumpstart.doublenegative.com.au:8080/jumpstart/examples/javascript/ajaxonevent&lt;/a&gt;&lt;br&gt;&lt;br&gt;On Tue, Nov 24, 2009 at 2:34 PM, Inge Solvoll &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496008&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;inge.tapestry@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm using tapx-prototype and I am still getting errors in IE8. It gets
&lt;br&gt;&amp;gt; worse with COMBINE_SCRIPTS, my popup links stop working. It's actually hard
&lt;br&gt;&amp;gt; to tell where the error is, the log messages are rather cryptic:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;quot;Object doesn't support this property or method&amp;quot;, pointing to prototype.js
&lt;br&gt;&amp;gt; or the combined script if script combination is on.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Nov 10, 2009 at 8:11 PM, Juan E. Maya &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496008&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maya.juan@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The current versions of prototype used by tapestry doesn't work very
&lt;br&gt;&amp;gt;&amp;gt; well with IE8, u can replace it by yourself (search the list, for sure
&lt;br&gt;&amp;gt;&amp;gt; is there somewher) or even use
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://tapestry.formos.com/nightly/tapx/tapx-prototype/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tapestry.formos.com/nightly/tapx/tapx-prototype/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 2009/11/10 Ignacio González Arboleya &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496008&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nachogon86@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;nbsp;I am using renderSupport.addScript() in order to add some JavaScript to
&lt;br&gt;&amp;gt;&amp;gt; my webpage. It works perfectly in Firefox, IE 7 and IE 8... However,
&lt;br&gt;&amp;gt;&amp;gt; although it
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; also works well in IE 8, you can read an error saying &amp;quot;object expected&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; associated with prototype.js. It only happens in IE 8.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Does anybody know anything about this issue?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Thankyou
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496008&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26496008&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%22Object-expected-error%22-with-prototype.js-and-IE-8-tp26287696p26496008.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26495972</id>
	<title>Re: &quot;Object expected error&quot; with prototype.js and IE 8</title>
	<published>2009-11-24T05:34:40Z</published>
	<updated>2009-11-24T05:34:40Z</updated>
	<author>
		<name>Inge Solvoll-2</name>
	</author>
	<content type="html">I'm using tapx-prototype and I am still getting errors in IE8. It gets worse
&lt;br&gt;with COMBINE_SCRIPTS, my popup links stop working. It's actually hard to
&lt;br&gt;tell where the error is, the log messages are rather cryptic:
&lt;br&gt;&lt;br&gt;&amp;quot;Object doesn't support this property or method&amp;quot;, pointing to prototype.js
&lt;br&gt;or the combined script if script combination is on.
&lt;br&gt;&lt;br&gt;On Tue, Nov 10, 2009 at 8:11 PM, Juan E. Maya &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495972&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maya.juan@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The current versions of prototype used by tapestry doesn't work very
&lt;br&gt;&amp;gt; well with IE8, u can replace it by yourself (search the list, for sure
&lt;br&gt;&amp;gt; is there somewher) or even use
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://tapestry.formos.com/nightly/tapx/tapx-prototype/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tapestry.formos.com/nightly/tapx/tapx-prototype/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009/11/10 Ignacio González Arboleya &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495972&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nachogon86@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;I am using renderSupport.addScript() in order to add some JavaScript to
&lt;br&gt;&amp;gt; my webpage. It works perfectly in Firefox, IE 7 and IE 8... However,
&lt;br&gt;&amp;gt; although it
&lt;br&gt;&amp;gt; &amp;gt; also works well in IE 8, you can read an error saying &amp;quot;object expected&amp;quot;
&lt;br&gt;&amp;gt; associated with prototype.js. It only happens in IE 8.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Does anybody know anything about this issue?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thankyou
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495972&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26495972&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%22Object-expected-error%22-with-prototype.js-and-IE-8-tp26287696p26495972.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494172</id>
	<title>Tapestry and JMeter</title>
	<published>2009-11-24T03:16:13Z</published>
	<updated>2009-11-24T03:16:13Z</updated>
	<author>
		<name>I Wayan Saryada-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm trying to do a load test on some of my Tapestry pages using
&lt;br&gt;JMeter. I create an http request from JMeter to submit the form and
&lt;br&gt;passes all the required input field value including the hidden field
&lt;br&gt;that contains value like formids, seedids, etc.
&lt;br&gt;&lt;br&gt;When submitting the form from a browser it works just fine. But I got
&lt;br&gt;the following error on the response page returned to JMeter.
&lt;br&gt;&lt;br&gt;[ +/- ] Exception: Unable to decode stream: invalid bit length repeat
&lt;br&gt;org.apache.hivemind.ApplicationRuntimeException
&lt;br&gt;&lt;br&gt;&lt;br&gt;[ +/- ] Exception: invalid bit length repeat
&lt;br&gt;java.util.zip.ZipException
&lt;br&gt;Stack Trace:
&lt;br&gt;java.util.zip.InflaterInputStream.read(InflaterInputStream.java:165)
&lt;br&gt;java.util.zip.GZIPInputStream.read(GZIPInputStream.java:111)
&lt;br&gt;java.io.BufferedInputStream.fill(BufferedInputStream.java:229)
&lt;br&gt;java.io.BufferedInputStream.read1(BufferedInputStream.java:267)
&lt;br&gt;java.io.BufferedInputStream.read(BufferedInputStream.java:324)
&lt;br&gt;java.io.ObjectInputStream$PeekInputStream.read(ObjectInputStream.java:2232)
&lt;br&gt;java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2245)
&lt;br&gt;java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2713)
&lt;br&gt;java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:765)
&lt;br&gt;java.io.ObjectInputStream.&amp;lt;init&amp;gt;(ObjectInputStream.java:283)
&lt;br&gt;org.apache.tapestry.util.io.CompressedDataEncoder.decodeString(CompressedDataEncoder.java:110)
&lt;br&gt;org.apache.tapestry.engine.RequestCycle.initializeIdState(RequestCycle.java:683)
&lt;br&gt;org.apache.tapestry.form.FormSupportImpl.reinitializeIdAllocatorForRewind(FormSupportImpl.java:456)
&lt;br&gt;org.apache.tapestry.form.FormSupportImpl.rewind(FormSupportImpl.java:622)
&lt;br&gt;org.apache.tapestry.form.Form.renderComponent(Form.java:196)
&lt;br&gt;org.apache.tapestry.AbstractComponent.render(AbstractComponent.java:724)
&lt;br&gt;org.apache.tapestry.services.impl.DefaultResponseBuilder.render(DefaultResponseBuilder.java:187)
&lt;br&gt;org.apache.tapestry.form.Form.rewind(Form.java:269)
&lt;br&gt;org.apache.tapestry.engine.RequestCycle.rewindForm(RequestCycle.java:469)
&lt;br&gt;org.apache.tapestry.form.Form.trigger(Form.java:280)
&lt;br&gt;org.apache.tapestry.engine.DirectService.triggerComponent(DirectService.java:166)
&lt;br&gt;org.apache.tapestry.engine.DirectService.service(DirectService.java:142)
&lt;br&gt;&lt;br&gt;Any information that might help me?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Regards,
&lt;br&gt;I Wayan Saryada
&lt;br&gt;&lt;a href=&quot;http://www.kodejava.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.kodejava.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494172&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26494172&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tapestry-and-JMeter-tp26494172p26494172.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494073</id>
	<title>determine current page context from component</title>
	<published>2009-11-24T03:07:53Z</published>
	<updated>2009-11-24T03:07:53Z</updated>
	<author>
		<name>Ilya Obshadko-2</name>
	</author>
	<content type="html">Is there a way to determine current page context from within a component?
&lt;br&gt;&lt;br&gt;Use case: suppose you have a component that appears on every page and
&lt;br&gt;contains login form.
&lt;br&gt;It is obviously desirable to return to the same page with the same context
&lt;br&gt;after user submits logon information.
&lt;br&gt;Returning null from onSuccess () just redirects to the same page, and
&lt;br&gt;context is missing after submit.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Ilya Obshadko
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/determine-current-page-context-from-component-tp26494073p26494073.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26493705</id>
	<title>Re: method advisors... change parameters</title>
	<published>2009-11-24T02:38:56Z</published>
	<updated>2009-11-24T02:38:56Z</updated>
	<author>
		<name>Thiago H. de Paula Figueiredo</name>
	</author>
	<content type="html">Em Tue, 24 Nov 2009 04:31:32 -0200, Alfonso Quiroga &amp;nbsp;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26493705&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alfonsosebaq@...&lt;/a&gt;&amp;gt; escreveu:
&lt;br&gt;&lt;br&gt;&amp;gt; Hi, is there a way to change the parameters of a service &amp;quot;invocation&amp;quot;?
&lt;br&gt;&amp;gt; I have the T5Invocation, the java Method.. I saw that invocation has
&lt;br&gt;&amp;gt; the real values inside (p0, p1.. fields). I can access them via
&lt;br&gt;&amp;gt; reflection (brute force), maybe something more adecuate? thanks in
&lt;br&gt;&amp;gt; advance
&lt;br&gt;&lt;br&gt;Take a look at &amp;nbsp;
&lt;br&gt;&lt;a href=&quot;http://tapestry.apache.org/tapestry5.1/tapestry-ioc/advice.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tapestry.apache.org/tapestry5.1/tapestry-ioc/advice.html&lt;/a&gt;, specially &amp;nbsp;
&lt;br&gt;the Invocation interface.
&lt;br&gt;To override a parameter, just invoke Invocation's override(int index, &amp;nbsp;
&lt;br&gt;Object newParameter). No need for reflection, even because it doesn't &amp;nbsp;
&lt;br&gt;provide the parameter values, just their types.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Thiago H. de Paula Figueiredo
&lt;br&gt;Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, &amp;nbsp;
&lt;br&gt;and instructor
&lt;br&gt;Owner, software architect and developer, Ars Machina Tecnologia da &amp;nbsp;
&lt;br&gt;Informação Ltda.
&lt;br&gt;&lt;a href=&quot;http://www.arsmachina.com.br&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.arsmachina.com.br&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26493705&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26493705&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/method-advisors...-change-parameters-tp26491079p26493705.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26492409</id>
	<title>Re: Help Tapestry5 Block with JavaScript? Anyone</title>
	<published>2009-11-24T00:49:00Z</published>
	<updated>2009-11-24T00:49:00Z</updated>
	<author>
		<name>alanearl</name>
	</author>
	<content type="html">Sorry @Environment is lacking
&lt;br&gt;But still no luck heheheh...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;alanearl&quot;&gt;&lt;br&gt;Excuse Me Sir Howard,
&lt;br&gt;&lt;br&gt;Could you help me with this? Im receiving error...
&lt;br&gt;&lt;br&gt;&lt;br&gt;org.apache.tapestry5.internal.services.RenderQueueException
&lt;br&gt;Render queue error in BeginRender[Index:myblock]: org.apache.tapestry5.ioc.internal.util.TapestryException
&lt;br&gt;&lt;br&gt;Template Class
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:actionlink t:id=&amp;quot;Button1&amp;quot; t:zone=&amp;quot;output&amp;quot;&amp;gt;Click Me1!&amp;lt;/t:actionlink&amp;gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:actionlink t:id=&amp;quot;Button2&amp;quot; t:zone=&amp;quot;output&amp;quot;&amp;gt;Click Me2!&amp;lt;/t:actionlink&amp;gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:zone t:id=&amp;quot;output&amp;quot; t:update=&amp;quot;show&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Hello
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:delegate to=&amp;quot;prop:blockToRender&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/t:zone&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:Myblock&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:block t:id=&amp;quot;block1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/t:block&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:block t:id=&amp;quot;block2&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/t:block&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/t:Myblock&amp;gt;
&lt;br&gt;&lt;br&gt;Page Class
&lt;br&gt;&lt;br&gt;public class Index
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; @InjectComponent
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Zone output;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Inject
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Block block1;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Inject
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Block block2;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; private Block blockToRender;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public Block getBlockToRender() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return blockToRender;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public void setBlockToRender(Block blockToRender) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.blockToRender = blockToRender;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Object onActionFromButton1()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setBlockToRender(block1);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return blockToRender;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Object onActionFromButton2()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setBlockToRender(block2);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return blockToRender;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Component Class
&lt;br&gt;&lt;br&gt;public class Myblock {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Inject 
&lt;br&gt;&amp;nbsp; &amp;nbsp; @Path(&amp;quot;context:layout/scripts/jquery-1.3.2.min.js&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Asset jquery;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Inject
&lt;br&gt;&amp;nbsp; &amp;nbsp; @Path(&amp;quot;context:layout/scripts/pagination.js&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Asset pagination;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; private RenderSupport rendersupport;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @BeginRender
&lt;br&gt;&amp;nbsp; &amp;nbsp; public void beginRender(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rendersupport.addScriptLink(jquery);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rendersupport.addScriptLink(pagination);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Howard Lewis Ship wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Search the archives, I'm pretty sure this has come up before.
&lt;br&gt;&lt;br&gt;On Mon, Nov 23, 2009 at 3:24 PM, alanearl &amp;lt;alan-luayon@dash.com.ph&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sory Oakstair i did not detail my problem.
&lt;br&gt;&amp;gt; First I dont have any problem integrating Tapestry &amp; JQuery.
&lt;br&gt;&amp;gt; My Problem is executing my javascript when it is inside the BLOCK.
&lt;br&gt;&amp;gt; I think it will not execute....
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Excuse me Sir Howard,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I don't understand this part:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This can be accomplished by using the Delegate component to call back
&lt;br&gt;&amp;gt; into your outer component (you have a getter method return an inner
&lt;br&gt;&amp;gt; class of type Renderable), and then you inject the stylesheets as
&lt;br&gt;&amp;gt; Assets and use RenderSupport to include them.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What do you mean i need to create a new component then it will be called by
&lt;br&gt;&amp;gt; my page
&lt;br&gt;&amp;gt; using injectcomponent &amp; put my javascript in the asset &amp; use render support?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sorry but Im confuse ...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Howard Lewis Ship wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The @IncludeJavascriptLibrary annotation changes the beginRender phase
&lt;br&gt;&amp;gt;&amp;gt; of your component to add the JavaScript.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; When a block within your component is rendered, the component's
&lt;br&gt;&amp;gt;&amp;gt; beginRender phase does not execute, just the
&lt;br&gt;&amp;gt;&amp;gt; beginRender phase of components *inside* the block.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This can be accomplished by using the Delegate component to call back
&lt;br&gt;&amp;gt;&amp;gt; into your outer component (you have a getter method return an inner
&lt;br&gt;&amp;gt;&amp;gt; class of type Renderable), and then you inject the stylesheets as
&lt;br&gt;&amp;gt;&amp;gt; Assets and use RenderSupport to include them.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Sun, Nov 22, 2009 at 6:44 PM, alanearl &amp;lt;alan-luayon@dash.com.ph&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My Question is when one of my block has jquery. It will not load the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; jquery
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; then action link perform.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Any help is appreciated.... Thanks!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My Code .tml
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;t:actionlink t:id=&amp;quot;testPage&amp;quot; t:zone=&amp;quot;output&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;t:zone t:id=&amp;quot;output&amp;quot; t:update=&amp;quot;show&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;      Default
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;t:delegate to=&amp;quot;prop:blockToRender&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;/t:zone&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;t:block id=&amp;quot;testBlock&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;      &amp;lt;!-- With JQuery  it will not load the JQuery --&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;      Test
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;/t:block&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My Class
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; @IncludeJavaScriptLibrary({&amp;quot;jquery-1.3.2.min.js&amp;quot;,&amp;quot;test.js&amp;quot;})
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    @InjectComponent
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    private Zone output;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    @Inject
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    private Block testBlock;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    private Block blockToRender;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    public Block getBlockToRender()
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    {
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        return blockToRender;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    }
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    Object onActionFromtestPage()
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    {
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        blockToRender = testBlock;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        return blockToRender;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    }
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26471839.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26471839.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sent from the Tapestry - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For additional commands, e-mail: users-help@tapestry.apache.org
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Howard M. Lewis Ship
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Creator of Apache Tapestry
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The source for Tapestry training, mentoring and support. Contact me to
&lt;br&gt;&amp;gt;&amp;gt; learn how I can get you up and productive in Tapestry fast!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; (971) 678-5210
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://howardlewisship.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://howardlewisship.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: users-help@tapestry.apache.org
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26487973.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26487973.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Tapestry - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
&lt;br&gt;&amp;gt; For additional commands, e-mail: users-help@tapestry.apache.org
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Howard M. Lewis Ship
&lt;br&gt;&lt;br&gt;Creator of Apache Tapestry
&lt;br&gt;&lt;br&gt;The source for Tapestry training, mentoring and support. Contact me to
&lt;br&gt;learn how I can get you up and productive in Tapestry fast!
&lt;br&gt;&lt;br&gt;(971) 678-5210
&lt;br&gt;&lt;a href=&quot;http://howardlewisship.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://howardlewisship.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
&lt;br&gt;For additional commands, e-mail: users-help@tapestry.apache.org
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26492409.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26492199</id>
	<title>Re: Help Tapestry5 Block with JavaScript? Anyone</title>
	<published>2009-11-24T00:33:49Z</published>
	<updated>2009-11-24T00:33:49Z</updated>
	<author>
		<name>alanearl</name>
	</author>
	<content type="html">Excuse Me Sir Howard,
&lt;br&gt;&lt;br&gt;Could you help me with this? Im receiving error...
&lt;br&gt;&lt;br&gt;&lt;br&gt;org.apache.tapestry5.internal.services.RenderQueueException
&lt;br&gt;Render queue error in BeginRender[Index:myblock]: org.apache.tapestry5.ioc.internal.util.TapestryException
&lt;br&gt;&lt;br&gt;Template Class
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:actionlink t:id=&amp;quot;Button1&amp;quot; t:zone=&amp;quot;output&amp;quot;&amp;gt;Click Me1!&amp;lt;/t:actionlink&amp;gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:actionlink t:id=&amp;quot;Button2&amp;quot; t:zone=&amp;quot;output&amp;quot;&amp;gt;Click Me2!&amp;lt;/t:actionlink&amp;gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:zone t:id=&amp;quot;output&amp;quot; t:update=&amp;quot;show&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Hello
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:delegate to=&amp;quot;prop:blockToRender&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/t:zone&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:Myblock&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:block t:id=&amp;quot;block1&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/t:block&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;t:block t:id=&amp;quot;block2&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/t:block&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/t:Myblock&amp;gt;
&lt;br&gt;&lt;br&gt;Page Class
&lt;br&gt;&lt;br&gt;public class Index
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; @InjectComponent
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Zone output;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Inject
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Block block1;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Inject
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Block block2;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; private Block blockToRender;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public Block getBlockToRender() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return blockToRender;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public void setBlockToRender(Block blockToRender) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.blockToRender = blockToRender;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Object onActionFromButton1()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setBlockToRender(block1);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return blockToRender;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Object onActionFromButton2()
&lt;br&gt;&amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setBlockToRender(block2);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return blockToRender;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Component Class
&lt;br&gt;&lt;br&gt;public class Myblock {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Inject 
&lt;br&gt;&amp;nbsp; &amp;nbsp; @Path(&amp;quot;context:layout/scripts/jquery-1.3.2.min.js&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Asset jquery;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @Inject
&lt;br&gt;&amp;nbsp; &amp;nbsp; @Path(&amp;quot;context:layout/scripts/pagination.js&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; private Asset pagination;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; private RenderSupport rendersupport;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; @BeginRender
&lt;br&gt;&amp;nbsp; &amp;nbsp; public void beginRender(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rendersupport.addScriptLink(jquery);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; rendersupport.addScriptLink(pagination);
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Howard Lewis Ship wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Search the archives, I'm pretty sure this has come up before.
&lt;br&gt;&lt;br&gt;On Mon, Nov 23, 2009 at 3:24 PM, alanearl &amp;lt;alan-luayon@dash.com.ph&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sory Oakstair i did not detail my problem.
&lt;br&gt;&amp;gt; First I dont have any problem integrating Tapestry &amp; JQuery.
&lt;br&gt;&amp;gt; My Problem is executing my javascript when it is inside the BLOCK.
&lt;br&gt;&amp;gt; I think it will not execute....
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Excuse me Sir Howard,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I don't understand this part:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This can be accomplished by using the Delegate component to call back
&lt;br&gt;&amp;gt; into your outer component (you have a getter method return an inner
&lt;br&gt;&amp;gt; class of type Renderable), and then you inject the stylesheets as
&lt;br&gt;&amp;gt; Assets and use RenderSupport to include them.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What do you mean i need to create a new component then it will be called by
&lt;br&gt;&amp;gt; my page
&lt;br&gt;&amp;gt; using injectcomponent &amp; put my javascript in the asset &amp; use render support?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sorry but Im confuse ...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Howard Lewis Ship wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The @IncludeJavascriptLibrary annotation changes the beginRender phase
&lt;br&gt;&amp;gt;&amp;gt; of your component to add the JavaScript.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; When a block within your component is rendered, the component's
&lt;br&gt;&amp;gt;&amp;gt; beginRender phase does not execute, just the
&lt;br&gt;&amp;gt;&amp;gt; beginRender phase of components *inside* the block.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This can be accomplished by using the Delegate component to call back
&lt;br&gt;&amp;gt;&amp;gt; into your outer component (you have a getter method return an inner
&lt;br&gt;&amp;gt;&amp;gt; class of type Renderable), and then you inject the stylesheets as
&lt;br&gt;&amp;gt;&amp;gt; Assets and use RenderSupport to include them.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Sun, Nov 22, 2009 at 6:44 PM, alanearl &amp;lt;alan-luayon@dash.com.ph&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My Question is when one of my block has jquery. It will not load the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; jquery
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; then action link perform.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Any help is appreciated.... Thanks!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My Code .tml
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;t:actionlink t:id=&amp;quot;testPage&amp;quot; t:zone=&amp;quot;output&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;t:zone t:id=&amp;quot;output&amp;quot; t:update=&amp;quot;show&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;      Default
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;t:delegate to=&amp;quot;prop:blockToRender&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;/t:zone&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;t:block id=&amp;quot;testBlock&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;      &amp;lt;!-- With JQuery  it will not load the JQuery --&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;      Test
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;   &amp;lt;/t:block&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; My Class
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; @IncludeJavaScriptLibrary({&amp;quot;jquery-1.3.2.min.js&amp;quot;,&amp;quot;test.js&amp;quot;})
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    @InjectComponent
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    private Zone output;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    @Inject
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    private Block testBlock;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    private Block blockToRender;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    public Block getBlockToRender()
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    {
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        return blockToRender;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    }
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    Object onActionFromtestPage()
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    {
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        blockToRender = testBlock;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;        return blockToRender;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;    }
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26471839.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26471839.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Sent from the Tapestry - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; For additional commands, e-mail: users-help@tapestry.apache.org
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Howard M. Lewis Ship
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Creator of Apache Tapestry
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The source for Tapestry training, mentoring and support. Contact me to
&lt;br&gt;&amp;gt;&amp;gt; learn how I can get you up and productive in Tapestry fast!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; (971) 678-5210
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://howardlewisship.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://howardlewisship.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: users-help@tapestry.apache.org
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26487973.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26487973.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Tapestry - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
&lt;br&gt;&amp;gt; For additional commands, e-mail: users-help@tapestry.apache.org
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Howard M. Lewis Ship
&lt;br&gt;&lt;br&gt;Creator of Apache Tapestry
&lt;br&gt;&lt;br&gt;The source for Tapestry training, mentoring and support. Contact me to
&lt;br&gt;learn how I can get you up and productive in Tapestry fast!
&lt;br&gt;&lt;br&gt;(971) 678-5210
&lt;br&gt;&lt;a href=&quot;http://howardlewisship.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://howardlewisship.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
&lt;br&gt;For additional commands, e-mail: users-help@tapestry.apache.org
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26492199.html" />
</entry>

</feed>
