Hi Rosy,
thanks for the reply... actually the issue is not the datasource.. I am able to bind my listview to an azure mobile services response or a static string..
listView.ItemsSource = new List<string>() { "A", "B", "C" };
but now I am trying to bind it to a multidimensional array in gridlayout such as I will have image and title in an array and this is where it is not working...
List<List<string>> strings = new List<List<string>>()
{new List<string>{"Id:001","Name:Decker1"},
new List<string>{"Id:002","Name:Decker2"}};
this works with regular xamarin listview but not with telerik listview :(