[Default.aspx.cs]
namespace Sample
{
public partial class _Default : Page
{
List<Orders> order = new List<Orders>();
private void BindDataSource()
{
int code = 10000;
for (int i = 1; i < 10; i++)
…
}
this.Grid.DataSource = order;
}
… |
I am seeing this same issue. There is no Datasource property for the Grid, even though your instructions below show us using:
this.Grid.DataSource = order;
And the guidance at the help documentation you shared also shows Grid.DataSource as being valid.
Help?
Thanks,
Dave
Hello Michael Lambert
I was having a similar issue, in my code I was unable to find the .DataSource property of the grid,
I was missing this three reference on my project, it looks like just adding the control on the designer is not enough and you have to add some additional references manually.
Syncfusion.EJ.Web Syncfusion.EJ.Export Syncfusion.EJ
[Default.aspx.cs]
namespace Sample
{
... List<Orders> order = new List<Orders>();
private void BindDataSource()
…
}
this.Grid.DataSource = order;
}
…
|