Hi
I need to show a list of people in alphabetical order,but the actual details displayed, such as text boxes / labels are laid out differently depending on one particular column, UserTypeId e.g.
User 1
User Type 1 details | more details
-----
User 2
User Type 1 details | more details
-----
User 3
User Type 2 different details
User Type 2 more details | even more details
-----
User 4
User Type 1 details | more details
etc..
The layouts for each user type are quite specific so a simple table would not work.
My thinking is to create a sub-report for each user type, but what is the best way to dynamically render this sub-report based on the user type value? Can this be achieved through data-binding, or would it be best to take complete programmatic control of the report?
Regards,
Dan.
Hi,
I have a requirement to generate a report for badges of attendees for a conference.
The requirement calls for an A4 print out of 4 badges in a 2x2 grid, so that each bade is effectively A6 size.
There is an additional requirement to have a single attendee details repeated per row.
Do you have any pointers as to the best way to achieve this?
e.g.
<
pre
>
---------------------------
| Atendee 1 | Attendee 2 |
| Details | Details |
| | |
---------------------------
| Atendee 3 | Attendee 4 |
| Details | Details |
| | |
---------------------------
</
pre
>
and
<
pre
>
---------------------------
| Atendee 1 | Attendee 1 |
| Details | Details |
| | |
---------------------------
| Atendee 2 | Attendee 2 |
| Details | Details |
| | |
---------------------------
</
pre
>
Hi
I am trying to only show a section on the last page of my document using the PageNumber = PageCount expressions. However it only seems to work in the page footer and header.
I have seen other people run into this issue before on your other forums. Was wondering if there has been an update or a fix i can implement myself.
Any help would be much appreciated.
Regards,
Sam
Hello,
I have an object data source pointing at a of List<DynamicJsonObject>. The problem is that the report throws an error when I reference a field name because it doesn't think the field exists. So, if I create a textbox and do "=Fields.LocationName", it gets an error when I preview it. However, this code works:
private void detail_ItemDataBound(object sender, EventArgs e)
{
var detail = (Telerik.Reporting.Processing.DetailSection)sender;
Telerik.Reporting.Processing.TextBox txt = (Telerik.Reporting.Processing.TextBox)Telerik.Reporting.Processing.ElementTreeHelper.GetChildByName(detail, "txtLocationName");
var data = (dynamic)detail.DataObject.RawData;
txt.Value = data.LocationName;
}
This is presumably working because I can cast the raw data as dynamic.
I'm not wedded to this way of doing this, but I do need a way to report on json data. Is this possible?
Thanks.
Hi All
I am looking for a way of creating a report that looks like the multimonth view on the calendar control for winforms, where i can highlight certain days if they meet criteria.
The report is showing the whole year like a multimonth view and for a specific employee, with specific dates having a different background color if the employee had a sick day off or some other type of non productive day.
It is for a customer of mine so they can see if there is a pattern to employees taking sick days off (eg mostly Fridays).
Cheers
Ade