Hi
I want to send some parameters from SL ReportViewer and want to access them in the Report Code behind. Please let me does it support to access the parameters from report code behind.
I have written teh follwoing in xaml code behibd.
private void RepViewer_RenderBegin(object sender, Telerik.ReportViewer.Silverlight.RenderBeginEventArgs args)
{
args.ParameterValues["key1"] = 3;
}
And in the report i tried to acces in the following way.
public Report1()
{
InitializeComponent();
var abc = this.ReportParameters[0].Value;
}
But its showing the value of abc as null.
Please let me know whether its possible to use value in the code.
Thanks in advance
Ravindra
I want to send some parameters from SL ReportViewer and want to access them in the Report Code behind. Please let me does it support to access the parameters from report code behind.
I have written teh follwoing in xaml code behibd.
private void RepViewer_RenderBegin(object sender, Telerik.ReportViewer.Silverlight.RenderBeginEventArgs args)
{
args.ParameterValues["key1"] = 3;
}
And in the report i tried to acces in the following way.
public Report1()
{
InitializeComponent();
var abc = this.ReportParameters[0].Value;
}
But its showing the value of abc as null.
Please let me know whether its possible to use value in the code.
Thanks in advance
Ravindra