I started a trial and I am creating a report using a static class that its on the same report for data retrieval purpose by means of example here is the code of the static class
and the report class includes this custom methods that retrieves information from the bringData Class
then on 5 diferent telerik textboxes on the report header section using the expression context menu I select custom function and Bind each custom function to each textbox i.e = data1()
but if I use more than 3 custom functions/functions I get a blank report, and if I use 3 or less custom functions/functions i get the expected behaivor of bringing the contents of the source class
is this a known bug issue?? suggestions?
using
System;
namespace
ExampleReport
{
public
static
class
bringData
{
public
static
string
data1 {
get
;
set
; }
public
static
string
data2 {
get
;
set
; }
public
static
string
data3 {
get
;
set
; }
public
static
string
data4 {
get
;
set
; }
public
static
string
data5 {
get
;
set
; }
}
}
and the report class includes this custom methods that retrieves information from the bringData Class
public
static
string
test1() {
return
bringData.data1; }
public
static
string
test2() {
return
bringData.data2; }
public
static
string
test3() {
return
bringData.data3; }
public
static
string
test4() {
return
bringData.data4; }
public
static
string
test5() {
return
bringData.data5; }
then on 5 diferent telerik textboxes on the report header section using the expression context menu I select custom function and Bind each custom function to each textbox i.e = data1()
but if I use more than 3 custom functions/functions I get a blank report, and if I use 3 or less custom functions/functions i get the expected behaivor of bringing the contents of the source class
is this a known bug issue?? suggestions?