Hi,
I am working on Mvc web Report Designer, I am able to store the report to database.
While storing the report i need to pass the extra parametrs from DropdwonList and store those values to database.
I am struck at passing the extra parameter to Save method in ReportStorageWebExtension
exapmle
public override string SetNewData(DevExpress.XtraReports.UI.XtraReport report, string defaultUrl)
{
// Store report in memory stream
MemoryStream ms = new MemoryStream();
report.SaveLayout(ms);
// Here i need to few extra parameters from the dropdownlist, which is plased in cshtml file
}