or
<
div
style
=
"width: 100%; height: 100%;"
>
<
div
id
=
"divDisable"
style="width: 100%;
height: 100%; z-index: 10000; background: #000000; opacity:0.15;
filter:alpha(
opacity
=
15
); position: absolute;"
runat
=
"server"
>
</
div
>
<
div
>
<
telerik:ReportViewer
id
=
"ExampleReportViewer"
Width
=
"100%"
Height
=
"100%"
ShowHistoryButtons
=
"False"
ShowPrintButton
=
"False"
ShowPrintPreviewButton
=
"False"
runat
=
"server"
></
telerik:ReportViewer
>
</
div
>
</
div
>
IQueryHandler<TQuery, TResult>
<
configSections
>
<
section
name
=
"Telerik.Reporting"
type
=
"Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
allowLocation
=
"true"
allowDefinition
=
"Everywhere"
/>
</
configSections
>
<
controls
>
<
add
tagPrefix
=
"TelerikReportViewer"
assembly
=
"Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
namespace
=
"Telerik.ReportViewer.WebForms"
/>
<
add
tagPrefix
=
"CR"
assembly
=
"CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
namespace
=
"CrystalDecisions.Web"
/>
</
controls
>
<
httpHandlers
>
<
add
type
=
"Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
path
=
"Telerik.ReportViewer.axd"
verb
=
"*"
/>
</
httpHandlers
>
<
system.webServer
>
<
handlers
accessPolicy
=
"Read, Execute, Script"
>
<
add
name
=
"Telerik.ReportViewer.axd_*"
type
=
"Telerik.ReportViewer.WebForms.HttpHandler, Telerik.ReportViewer.WebForms, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
path
=
"Telerik.ReportViewer.axd"
verb
=
"*"
preCondition
=
"integratedMode"
/>
</
handlers
>
</
system.webServer
>
var bm = new System.Drawing.Bitmap("\\Logos\Image.bmp");
picLogo.Value = bm;
The first time I opened VS, I was able to see my custom business objects in the Configure Object Data Source dialog. However, now I'm not able to see any of the classes in the project in the Available data source types tab. I've re-installed several times and have made sure to build the project when changes are made and before running any of the wizards. I've added the following simple class which also does not show up in the list:
[System.ComponentModel.
DataObject(true)]
public class Car
{
public string Make { get; set; }
public string Model { get; set; }
public List<Car> GetCars()
{
return new List<Car>();
}
}
public
static
ReportSource GetReportSource(
object
dataObject)
{
var report =
new
TextReport();
report.DataSource = dataObject;
return
new
InstanceReportSource { ReportDocument = report };
}