Hi Jeff
The DevExpress ASPxGridView works great in custom mojoPortal aspx feature pages and can be used in design view.
Make sure that in your project AND the mojoPortal Web project that you have added references to:
DevExpress.Data.v10.2
DevExpress.Web.ASPxEditors.v10.2
DevExpress.Web.ASPxGridView.v10.2
DevExpress.Web.v10.2
and these 4 dlls should be in the bin folder of your project AND the mojoPortal Web project.
For the version you are using.
Your aspx page should also have these 2 lines starting at line 2 for the version you are using.
<%@ Register Assembly="DevExpress.Web.ASPxGridView.v10.2, Version=10.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.Web.ASPxGridView" TagPrefix="dx" %>
<%@ Register Assembly="DevExpress.Web.ASPxEditors.v10.2, Version=10.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
Namespace="DevExpress.Web.ASPxEditors" TagPrefix="dx" %>
I use a SqlDataSource to populate my grid
Hope this helps
Rick