reporting

“page-break-inside: avoid ”- does not work

旧时模样 提交于 2019-11-29 14:10:24
I am making a print css... And i want to print certain blocks as a whole, therefore I used 'page-break-inside: avoid'. But this doesn't seem to work. I have been searching desperatly to find a solution... I use Google Chrome .print-block { display: block; page-break-inside: avoid !important; margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px dashed black; } This is the CSS, I am using... Only Opera fully supports page-break-inside . References: General Chrome specific Firefox specific 来源: https://stackoverflow.com/questions/6996410/page-break-inside-avoid-does-not-work

SSRS report formatting a table to display data side by side

和自甴很熟 提交于 2019-11-29 14:07:41
I am trying to achieve the following layout for my report based on one query. +----+-------+----+-------+ | ID | Name | ID | Name | +----+-------+----+-------+ | 1 | Danny | 2 | Dave | | 3 | Sue | 4 | Jack | | 5 | Rita | 6 | Sarah | +----+-------+----+-------+ So I basically want one table, printing my data from left to right to save space on my page, rather than it printing one line and wasting all of the space on the right side of the paper, possibly even go 3 times across the width. This is my data: http://sqlfiddle.com/#!3/5c911/1 I was maybe thinking a table with 4 columns. Cols 1 and 2

SSRS - Trying to pass lengthy parameters to a report and opening in a new window

倖福魔咒の 提交于 2019-11-29 11:40:50
I am trying to open a report (From a report which is RDL) in a new window by using the command: <Action> <Hyperlink>="javascript:void(window.open('http://...&param1=ddd&param2=fff&.... This is working fine for less number of parameters. But, For lengthier ones, The pop-up window is not getting opened. My client is using browser, IE 6, 7 & 8. This is not working in any of these 3 IE versions. Is there any way to make this request to be a POST method instead of GET. Can we write Javascript function inside RDL. Please guide to find a solution for this. I an new to SSRS. Thanks, Vivek You can POST

BIRT: Alternating row Color in a table group

蓝咒 提交于 2019-11-29 09:28:13
Has anybody an idea of how the highlighting condition has to look like, to create alternating rows in groups? I want the every row with an even number of a table group (not of the whole table) to have a different color. Thanks in advance! :-) Patrick P.S.: I'm using BIRT 2.1.3 Add a highlight to the row like this: row[0] % 2 Equals 0 This works because row is the current row and row[0] is the rownumber. row[1], row[2] etc. are the data values for the current row. (Source: http://dev.eclipse.org/newslists/news.eclipse.birt/msg03977.html ) For Birt 2.3 reporting Click on the table from the

VB.Net: How to use an Object data source in report (.rdlc)

坚强是说给别人听的谎言 提交于 2019-11-29 08:39:16
My question is similar to this one but I'm having some problems with the actual implementation. I've got a report (.rdlc) in the business layer of a 3-tier app. I've got an object in the BL ( EmployeeManager ) which has a GetEmployees(Expression as Expression(Of Func(Of Employee, Boolean))) As IQueryable(Of Employee) method. As I didn't want to try and pass a lambda in directly (at least not until I've got something working), I've created a ReportData class in the BL which wraps the GetEmployees() call and exposes the results as an IEnumerable(Of Employee) - which should be very simple. It

Templating Engine to Generate Simple Reports in .NET [closed]

吃可爱长大的小学妹 提交于 2019-11-29 05:20:47
I'm looking for a free templating engine to generate simple reports. I want some basic features such as : Ability to Write Loops (with any IEnumerable) Passing Variables Passing Templates Files (main template, footer, header) I'll use this to generate reports in HTML and XML. I'm not looking for a ASP.NET Template Engine. This is for a WinForms applications. I've seen this question Can you recommend a .net template engine? , however all of those template engines are total overkill for me and focused for ASP.NET. Please only recommend free libraries. // I'm still looking an NVelocity but it

Setting image source in RDLC report dynamically

风流意气都作罢 提交于 2019-11-29 02:52:09
问题 I'm using the client-side reporting capabilities that are bundled in with Visual Studio 2010. I've got an RDLC file defined, currently with embedded images for branding purposes at the top of the report. The image is the logo for the user's company. It has nothing whatsoever to do with the report data... it's just a title. I'd like to be able to break the dependency on embedding the images, as I'm beginning to have to scale the app. Instead, I'd like to be able to dynamically set the image.

Cucumber HTML report with Protractor

那年仲夏 提交于 2019-11-29 01:35:32
I am using Protractor with Cucumber (js). I would like to generate report files just like with the Cucumber-JVM version. I have seen examples when using Protractor with Jasmine, but practically nothing with Cucumber. How do you generate reports when using this configuration? The final goal is to publish this report in Jenkins, or anywhere else if they are directly generated in HTML. Thanks! With the latest version of protractor (from version 1.5.0), you can now generate a JSON report. When I asked this question about 7 months ago that feature was not there. All you need to do is add this to

String aggregation in SSRS 2005

╄→尐↘猪︶ㄣ 提交于 2019-11-28 23:42:52
Using BIDS 2005 to create rdl reports. I want to have the report aggregate all the strings in a data group. I was looking for something along the lines of Concatenate(Fields!CompanyName.Value, ","), or Join, or equivalent. But it would have to iterate over all the records in the scope given. I am creating a report of a user's activities in a calendar format (looking like the google's month view calendar) But if a user has multiple activities on a single day I want all of them to show up in the same 'day box'. Is this a problem needing aggregation or is there some other way to get a SSRS report

Open source PHP reporting tool

烂漫一生 提交于 2019-11-28 18:53:46
I am developing web based application, i need php reporting lib/class to make the job easy. I need PDF/Excel format. The report based on related db tables(member bills, member info) Is there any advanced open source solution ? Thanks There are tons of reporting libraries, most of which create Xml or Csv. You would have to give more data about what kind of reporting you need for a recommendation. I haven't used PHPExcel yet, but it is the first attempt I have seen to actually create Excel documents rather than creating CSV's that will load in Excel. PDF creation is built into PHP with the PDF