Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
985
igListView: How to bind jason array data to data-item-template
posted

I have json data array (shown below) and would like to display in Mobile ist View Control, something like this:

  data-item-template="<div>  <span> array element 1</span> <span>array element 2 </span> </div>"

 

Note: I have simplified to understand problem, data displayed is very complex and around 50 array elements.

Json Data:

{

    "browseData": [

        [

            "10S10010",

            "10C1000",

            "Z"

        ],

        [

            "SO011203",

            "10C1000",

            "A"

        ]

    ]

}