I'm trying to implement a list that updates itself after a user clicks on a
link.  The list is a ListView repeater and is a child of WebMarkupContainer. 
For each ListView item, I've attached an AjaxFallbackLink with the
WebMarkupContainer object as the sole ajax target.

My implementation mostly works except some jQuery Mobile styling in the
container disappear.  Looking at Firebug, I noticed that jQuery Mobile's
dynamically-generated class attributes are gone.

As an example, my repeating divs before Wicket ajax update looks like this:
<div class="ui-collapsible-set" data-role="collapsible-set">
        <div class="ui-collapsible" data-role="collapsible">
                etc...
        </div
</div>

After the ajax update:
<div data-role="collapsible-set">
        <div data-role="collapsible">
                etc...
        </div>
</div>

Is there a way to tell Wicket to keep jQuery Mobile styling after an ajax
update?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/jQuery-Mobile-styling-disappears-after-Wicket-ajax-update-tp4328874p4328874.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to