Ops... thank you!
I still am missing something stupid anyway: my dnngrid never shows up on page, no matter the data I try to display. If I put two controls like this in my module:
<%@ Register Assembly="DotNetNuke" Namespace="DotNetNuke.UI.WebControls" TagPrefix="cc1" %>
<cc1:DNNDataGrid id="grd1" runat="server" AutoGenerateColumns="true"/>
<asp:GridView ID="grd2" runat="server" AutoGenerateColumns="true" />
and pupulate data with the same code:
grd1.DataSource = DotNetNuke.Entities.Tabs.TabController.GetPortalTabs(Me.PortalId, 0, True, True)
grd1.DataBind()
grd2.DataSource = DotNetNuke.Entities.Tabs.TabController.GetPortalTabs(Me.PortalId, 0, True, True)
grd2.DataBind()
I only see the asp:gridview populated, while dnngrid does not appear even in page source.
Must be something stupid, I know it is ;)
Using DNN 6.1.5.