new Telerik.Reporting.Data.Filter("= Fields.[Type]", ((Telerik.Reporting.Data.FilterOperator)(Telerik.Reporting.Data.FilterOperator.In)), "= Parameters.[Type]")});
reportParameter5.Name =
"Type";
reportParameter5.UI.AvailableValues.DataSource = dsUsers.Tables[0];
reportParameter5.UI.AvailableValues.ValueMember =
"Type";
reportParameter5.UI.MultiValue =
true;
reportParameter5.UI.Text =
"Type";
reportParameter5.UI.Visible =
true;
this.ReportParameters.Add(reportParameter5);
It create dropdownbox and it filter the column fantastic but it shows one red asterisk near the dropdownbox if i pass empty value. and nothing happen if I press Prieview button.
since I have empty value also in that column(in few rows).. I have tried using
reportParameter5.UI.Allowblank= "true";
but nothing happens...
//2nd Issue
I have used multiview on my page and in one view i have kept telerik reportviewer control
when i run my page it shows perfect report but it is showing print, refresh,navigation button on the tab of the reportviewer twice.
pls clear my doubt
thanx