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.
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.