• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Refresh dynamic tree in tapestry

 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have developed a dynamic tree in tapestry.

It is rendering the tree using <div> tag.

For example:

<div id="dynatreeId">
<div t:type="jquery/dynatree" t:tree="tree"/>
</div>

here <t:tree="tree"> is custom component.

Tree is rendered perfectly.

Now whenever any root or child node is selected in this tree, the particular <div> tag containing tree should get refreshed each time.

How I can use AJAX to refresh the particular tree ? Is there any way to do it in Tapestry itself ?

Thanks in advance
reply
    Bookmark Topic Watch Topic
  • New Topic