Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ComponentOne grid error

Status
Not open for further replies.

kristofdielis

Programmer
Sep 1, 2011
25
Hi,

I recently downloaded the C1 ASP.NET Wijmo trial to see what it's all about.

When trying to recreate a page with a grid, I get the following (Javascript) error, as soon as I set the datasource:

<wijmo:C1GridView ID="C1GridView1" runat="server">
</wijmo:C1GridView>

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
C1GridView1.DataSource = this.DataList;
C1GridView1.DataBind();
}
}

That results in an error message like this: 'options is empty'. The debugger stops and highlights this code:

g=d.options.allowEditing&&c.column.readOnly!==true

Which is in some webresources file in the temporary files.


PS: I also posted this on the C1 forum, in case you wonder.
 
Nevermind, I got a response on the official forum. It's a bug that's being handled as we speak.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top