or
m_ReportTable.Body.Rows.Add(
new TableBodyRow(m_RowHeight));
TextBox dataCell = new TextBox { Value = "val" };
dataCell.Size =
new SizeU(m_RowHeight, m_RowHeight);
m_ReportTable.Body.SetCellContent(0, 0, dataCell);
TextBox dataCell2 = new TextBox { Value = "val2" };
dataCell2.Size =
new SizeU(m_RowHeight, m_RowHeight);
m_ReportTable.Body.SetCellContent(0, 1, dataCell2);
Panel p = new Panel();
p.Items.AddRange(
new ReportItemBase[] { dataCell, dataCell2 });
m_ReportTable.RowGroups[0].ReportItem = dataCell2; //added one defauld row group at initialization
m_ReportTable.Items.AddRange(
new ReportItemBase[] { dataCell, dataCell2 });
Hai
When I was takeing Data as below Report Showing output Data.
public static List<Job> GetData(int ab)
{
}
but when I was takeing data as below
public async static Task<List<Job>> GetData(int ab)
{
}
it was showing Error The expression contains object 'JobName' that is not defined in the current context.
Is Telerik Reports support async methods ?
'Shape1
'
Me.Shape1.Location = New Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Pixel(0.0R), Telerik.Reporting.Drawing.Unit.Pixel(41.0390625R))
Me.Shape1.Name = "Shape1"
Me.Shape1.ShapeType = New Telerik.Reporting.Drawing.Shapes.PolygonShape(4, 45.0R, 0)
Me.Shape1.Size = New Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Pixel(83.149604797363281R), Telerik.Reporting.Drawing.Unit.Pixel(83.0R))
Me.Shape1.Style.BackgroundColor = System.Drawing.Color.FromArgb(CType(CType(154, Byte), Integer), CType(CType(180, Byte), Integer), CType(CType(198, Byte), Integer))
Me.Shape1.Style.BorderColor.Default = System.Drawing.Color.White
Me.Shape1.Style.BorderWidth.Default = Telerik.Reporting.Drawing.Unit.Pixel(0.0R)
Me.Shape1.Style.Color = System.Drawing.Color.White
Me.Shape1.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(0.0R)