I created a simple CROSSTAB report via the Crosstab wizard. I am making sure that both RowHeadersPrintOnEveryPage and ColumnHeadersPrintOnEveryPage are set to TRUE, yet, it seems that when I print this report, only the COLUMN HEADERS are printing on every page, where as the Row Headers are not. As you can see in the example I have attached, the COLUMN HEADERS are re-printing on every page, but the ROW HEADERS are not ( TOWN & WARD column headers are missing on page 2)
I have made no other changes to the report layout or the data. Is this by design/bug/what?
TIA
Hi,
Please can you add the ability to reorder columns in the report designer by drag/drop of the column headers?
Thanks,
Hello Telerik Team,
I can't make Reporting work in VS 2015 Community. In the designer mode when I choose View->Data Explorer or others nothing happens.
In VS 2013 Community everything is ok. Could you confirm that in VS 2015 the designer is fully supported?
Thank you
I have a problem unsing Telerik.ReportViewer.WPF.ReportViewer.
I have a report with a table wich is goint to show a very large text in each item... but in report viewer text shows cut off, when export report to PDF text shows normal. How can i fix ???
Hi,
I have a SalDataSource, and I ​wrote queries inside there instead of store procedure. Everything works, the reports generates without any issue but in the report design, I can not see the list of the fields, I need to type it manually, is there anyway to get around it so I can see the fields because my query is very complicated and I need to use temp tables, moreover, the project team decide not use any store procedure. thanks
To make is simple, here is the sample to reproduce the issue:
1. sqldatascource =
"select * into #abc FROM tableAbc
select * from #abc"
2. In the "field expression", I want to display the value in fieldD column by using : "Fields.fieldD" but it is empty, I cannot click on anything. However, I can manually type it and the report works without any issue.
thanks!
I have an kendo report where i load a table. My problem here is that i want to load another table inside that table. I want to call my action method that looks like this:
[DataObjectMethod(DataObjectMethodType.Select)]
public IList<QuoteInfoItemDto> GetQuoteInfoItemsAccessories(int projectItemId)
{
return quoteItemModel.GetAccessories(projectItemId);
}
The problem here is that i use an parameter projectItemId but the projectItemId is always the same and it's always of the last item in my (parent) table. How can i post the id of the current (parent)table so that i can fetch the data from my actionmethod to the (child) table?
​