sharepoint mobile webpart and gridview
SharePoint
1
Posts
1
Posters
0
Views
1
Watching
-
I am developing a mobile webpart i inherits my class from WebPartMobileAdapter and override the method CreateControlsForSummaryView the code is like this public class ArchiveGridMobileAdapter : WebPartMobileAdapter { protected override void CreateControlsForSummaryView() { GridView gridView = new GridView(); Controls.Add(gridView ); } } the proplem is that the grid view didn't work listview also didn't work SPMobileListView also didn't work what can i do