CinnamonGirl
New Member
How can I make a ListView scrolling vertically with HTML/JS in an Windows8 application using WinJS?I've developed an Windows 8 app with XAML/C# and in the application I used a ListView to get a list with vertical scrolling behavior. I'm now trying to create the same app with HTML/JS but failing to create a list with ListView that scrolls vertically. It automatically puts the ListItems on a horizontal line and scrolling horizontally. I thought that GridView can be used for "lists" with horizontal scrolling and ListView for vertical scrolling.I've also tried to wrap the ListView within a div that scrolls vertically on overflow by using this:\[code\]<div style="overflow-y:scroll;"> // ListView</div>\[/code\]