Tag: ListView
-
ListView in WinJS based Windows Store Application
In 2012 I wrote a post List View Data Binding in Windows 8 JavaScript Metro Application. If you follow along this post some of the code will not work. So I decided to write a post again on working with ListView in WinJS. There are three simple steps to work with the ListView. Step1: Create…
-
Working with OData and WinJS ListView in Metro Application
In this post we will see how to consume Netflix OData feed in HTML based Metro Application. Movies information will be displayed as following. At the end of this post, we should have output as below, Netflix exposed all movies information as OData and that is publicly available to use. Netflix OData feed of movies…
Dhananjay Kumar
-
How to fetch selected item of ListView in HTML based Windows 8 Metro Application
I had tough time get the value of selected item of a ListView. So in this post I am sharing the code snippet required to fetch selected item from the ListView. Read this article for ListView Binding with Grouping and Semantic Zoom in Windows 8 JavaScript Metro Application I strongly suggest you to read the…
-
ListView Binding with Grouping and Semantic Zoom in Windows 8 JavaScript Metro Application
Windows 8 CP and VS11 are around. Recently I wrote Setting up Visual Studio11 Beta for Metro Application Creation . In this post let us get into some development. In this post we will see Creating DataSource ListView Binding to DataSource Creating ItemTemplate Grouping Data Source Using SemanticZoomView over ListView At the end of the…
Dhananjay Kumar
-
List View Data Binding in Windows 8 JavaScript Metro Application
In this post we will see, Working with ListView control in WinJS ItemTemplte in WinJS Data Binding to ListView Creating Data Source in WinJS For purpose of this post I am going to bind name and images of Indian cricket player in ListView. After data binding ListView should look like below, To bind data with…
Dhananjay Kumar