paglist show()

Hello,

is the show function of pagelist implemented yet?

Im trying to scroll to an item with

	$$("carousel_list").show("5");

but it doesn’t work. Seems that paglist has no show function.

Thanks in advance
Horst

Hello,

show() method can be applied only to a view (component), for example to a certain view from multiview or carousel. There was not a method to show a data item.

We have added showItem(itemId) method that scrolls views to display a defined item:

$$(“carousel_list”).showItem(“5”);

You need to use touchui.js from the attached sample.
pagelist.zip (482 KB)

Hello Alexandra,

perfect. Thanks.