0
votes
$.view(class).refresh() 

Above code only works on the first element, if there are multiple elements with the same class. Is there any way by which i can update multiple elements with this?

1

1 Answers

2
votes

$.view(".myClass") returns a single view (for the first ".myClass" element found).

But you can do:

$(".myClass").each(function() { $.view(this).refresh(); })

which will refresh each of the ".myClass" views.