My Question is when one of my block has jquery. It will not load the jquery
then action link perform.
Any help is appreciated.... Thanks!

My Code .tml

   <t:actionlink t:id="testPage" t:zone="output">

   <t:zone t:id="output" t:update="show">
      Default
   <t:delegate to="prop:blockToRender" />
   </t:zone>

   <t:block id="testBlock">
      <!-- With JQuery  it will not load the JQuery -->
      Test
   </t:block>

My Class
@IncludeJavaScriptLibrary({"jquery-1.3.2.min.js","test.js"})

    @InjectComponent
    private Zone output;

    @Inject
    private Block testBlock;

    private Block blockToRender;

    public Block getBlockToRender()
    {
        return blockToRender;
    }

    Object onActionFromtestPage()
    {
        blockToRender = testBlock;
        return blockToRender;
    }

-- 
View this message in context: 
http://old.nabble.com/Help-Tapestry5-Block-with-JavaScript--Anyone-tp26471839p26471839.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


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

Reply via email to