Hi,
I am currently trying to work out web based report designer. The issue I am facing at the moment is that I am not able to see the filed of the bound data source in the designer. Following is my code
C#DataSet ds = new DataSet();
ds.DataSetName = "Data Set";
ds.Tables.Add(dataTable);
var report = new XtraReport();
//report.DataSource = ds;
report.DataSource = ds.Tables[0];
report.DataMember = ds.Tables[0].TableName;// "ExcelParser Data"
ASPxReportDesigner1.OpenReport(report);
Where as the dataTable is populated using an excel sheet so it contains columns and rows. Even if i create a stub datatable, its fields wont show up in the report designer.
A prompt reply is highly appreciated as we are currently in evaluation of this product and want to go for license if things go smooth.