vote up 2 vote down star

I am encountering a problem:

On an html page, when i click a certain control (a tab panel title) i make an ajax call.

From Wicket (java code) i call a javascript function that "redraws" all the componenets on my page (this is like a reload of the page). Everytime i do this i get a flickering effect on the html (which, as i said, after the ajax call will trigger a redrawing of all the components on the page).

I am triggering the javascript function (that redraws) because i need to "redraw" using the new information supplied by the ajax response (the response gives me a new table for instance and i have to redraw, repaint the page using this new info as a sort of parameter, according to it).

flag

15% accept rate
How are you doing the redrawing and updating the page? – John Topley Sep 29 '08 at 15:46
through javascript code (using position/dimension properties of elements) – AndreiC Sep 29 '08 at 15:49
Can you post the redraw code? – John Topley Sep 29 '08 at 15:54

1 Answer

vote up 2 vote down

Sorry, but to be clear here: when you say "redraw" do you really mean redraw the currently existing content (as in "do dynamic changes to the table but don't delete it") or do you mean replacing the existing content with some new content, as is the normal Ajax technique?

If you are replacing existing components with new components you should be OK as long as you provide some kind of fading/animation effect that draws the user's attention from the fact the control is being replaced. Sometimes doing some kind of "screen buffering" (loading all the new components in a hidden div, then replacing an existing div with the new one) will help if you are updating a lot of the interface.

link|flag
sorry, i was not clear: when i was saying "redraw", it was actually repositioning/resizing the contents of the html i was speaking about, through Javascript code (every time the page is loaded/or the agax event is trigerred) i repostion elements of html(maybe dom model cause i follow the ajax call) – AndreiC Sep 29 '08 at 16:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.