Re: building tons of ajax links

2009-12-10 Thread Douglas Ferguson
well the specs are for ajax. they want the controls to not get redrawn just the data table. which looks awesome when they click on the controls and see the list change quickly. I made the links external links and applied the same behavior to all of them using

Re: building tons of ajax links

2009-12-10 Thread zoltan luspai
Hi, Do something like this: * create a form with hidden field(s) and a hidden submit-button, and configure this button to be ajax-submitted. * on page onload scan the DOM, and attach an onclick event handler to all the tons of links you want to do something on ajax. I'd use some

building tons of ajax links

2009-12-09 Thread Douglas Ferguson
I'm supporting some code that builds an ajax link per tag aka. tag cloud. When there are tons of tags, this can take quite some time. My guess is all the overhead in having wicket build all the callbacks for each link. Is there a way to implement a group of ajax links that share the same

Re: building tons of ajax links

2009-12-09 Thread Per Lundholm
... or do not use ajax ... what happens when you click ... are you not taken to a search result ... might as well redraw the page. /Per On Thu, Dec 10, 2009 at 7:47 AM, Douglas Ferguson doug...@douglasferguson.us wrote: I'm supporting some code that builds an ajax link per tag aka. tag cloud.