I have my Report in MVC and displaying the report in IFrame. I have search Fields Parameters and In report I want to use those fields.
Means my main point to is to send the value from MVC view to Report Backend code. I think it should be something by setting report parameter.
But I do not how? I have set for help.
I need urgent help.
I am using telerik reporting(Q2014) for my web application:
here is my database tables
setNO Names salary
1 Girmay 5000
1 Genet 5000
2 Kenenisa 5000
2 Lemlem 4000
2 Abebe 4000
3 Melat 6500
3 Haile 6500
now i want to display this using crosstab telerik, and so that i can avoid repetitions of data. it works for me likes
setNO salary Names
1 5000 ...here namelists
2 4000 here name list
3 65000 here name lists
but i want to make on this order
setno Names Price
i cannot add row groups to the right side of the table, it only works on the left side?
could help me please? i new for telerik
Hi,
I am trying to display new graph using the Telerik.Reporting.Graph tool on each page of the report. Each page is displaying the grades of a particular student. So how do I get the bar chart to display the correct graph for each student on the page. Currently it is just showing the same graph on every page and the values are not changing according to the student id displayed at the top of every page.
(I am using C# in Visual Studio)
Thanks!
Hi All
I have a report that uses a subreport to display a series of questions (1-24), just using a detail section (not a table).
Each one of these questions has up to five checkboxes for further options that have been selected.
They each have different labels as well depending on which question it is.
I have managed to get out the question no on the detail_ItemDataBinding event and the report works fine but..
I want to reference the 5 checkboxes for each particular question, hiding the ones not required and changing the text value for those in use??
Cheers
Ade
Hello,
I create a Report on runtime with ;
for (int i = 0; i <= ds.Tables[0].Columns.Count - 1; i++)
{
var tableGroupColumn = new TableGroup();
tableGroupColumn.Name = i.ToString();
table1.ColumnGroups.Add(item: tableGroupColumn);
txtGroup = new HtmlTextBox
{
Size = new SizeU(Unit.Inch(2.1), Unit.Inch(0.3)),
Value = ds.Tables[0].Columns[i].ColumnName,
Style =
{
BackgroundColor = System.Drawing.Color.FromArgb(59,100,141),
Color = System.Drawing.Color.White,
BorderStyle = { Default = BorderType.Solid },
TextAlign = HorizontalAlign.Center,
VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle,
BorderColor = { Default = Color.Black }
},
StyleName = "Corporate.TableHeader",
};
tableGroupColumn.ReportItem = txtGroup;
txtTable = new HtmlTextBox()
{
Size = new SizeU(Unit.Inch(2.2), Unit.Inch(0.3)),
Value = "=Fields.[" + ds.Tables[0].Columns[i].ColumnName + "]",
//Value = data.Rows[rowIndex][i].ToString(),
Style =
{
BorderStyle = { Default = BorderType.Solid },
TextAlign = HorizontalAlign.Center,
VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle,
BorderColor = { Default = Color.Black }
},
StyleName = "Corporate.TableHeader",
};
table1.Body.SetCellContent(0, columnIndex: i, item: txtTable);
//rowIndex++;
table1.Items.AddRange(items: new ReportItemBase[] { txtTable, txtGroup });
}
and i want to add a Total with sum function but i cant do this.
Hi Telerik,
Recently, we've been experiencing timeouts in our reports, where can we do the configuration of the prolong timeout limit? Can we do it via HTML Viewer, or the Reports API or the Report itself??
Thank you...
The reports work great in vs2005 but when i uploaded this change to my webstie and add all necessary references to the bin directory the report viewer doesn display reports
the viewer is there but all the buttons show up as missing images
anyhelp with this would be great. I am using Q2 2007 reporting and i have added
and the charting dll to the bin folder
regards
Brad
Hello,
I am using the standalone designer and displaying reports on the web.
In the standalone designer the table cell looks OK with text vertically aligned in the middle. (First example in attached image.)
On the web the bottom half of the cell cuts off (Second example in attached image.)
Also, if I try and add padding on the left of the table cell, the cell shrinks in width by that amount and starts cutting off the right side of the cell (Third example in attached image.)
When I export these reports to PDF it displays properly (same as in Report Designer).
Any thoughts here?
Hi all,
i'm working on C# , Silverlight with MVVM concept , I'm using Silverlight Report viewer to print or print preview the reports .
this report viewer is calling by using the wcf services here my report is loading slowly I checked with fiddler and found that the service is calling the service is calling 4 times here I have attached the image of that and piece of code how I implemented. i'm thinking because of calling 4 time the report is loading slowly .And here is a question can we use HTML5 report viewer instead of Silverlight Report Viewer ? does this work fast compare to Silverlight report engine?.
Thanks
Prashanth.