A simple list like
<div class="ui-page ui-page-active" id="main" >
<ul id="currentList" class="ui-listview ui-virtuallistview">
<li>test</li>
<li>test2</li>
</ul>
</div>
in Tizen for the wearable round watch Gear S2 is working very well. We can scroll the list through the watch-wheel and the current item appears to be selected.
After changing / adding some new list items via jquery, the new items are not scrollable by the watch-wheel.
$("#currentList").append('<li>testXXX</li>');
we tried
$("#currentList").listview('refresh');
to update and re-evaluate the list, but the function is not available.