Hi,
We are able to see data in Telerik Report Viewer in IE v8.0 but not in IE v11.0. It just displays the Report Viewer Toolbar on top.
Any help would be greatly appreciated !
Thanks,
Rahul B
=
IIf(IndexOfSubstr(Fields.ContactName,
" "
) >
0
, Split(
" "
, Fields.ContactName),
"False"
)
=
IIf(IndexOfSubstr(Fields.ContactName,
" "
) >
0
, Split(
" "
, Fields.ContactName)[
0
],
"False"
)
System.String[] s =
new
string
[] {
"telerik"
,
"reporting"
};
Console.WriteLine(s[0]);
SELECT
Orders.CustomerID,
Customers.ContactName,
Orders.OrderDate,
Orders.RequiredDate,
Orders.ShippedDate,
Orders.ShipVia,
Orders.ShipCity
FROM
Customers
INNER
JOIN
Orders
ON
Customers.CustomerID = Orders.CustomerID
I am finding the documentation really complicated. How can I create a class to be used as an objectdatasource? When I ran the wizard I put in my class but it didn't show any of the fields. So here is my class. How can I turn this into an objectdatasource?
public class MyClass
{
public MyClass()
{ }
public Guid Id;
public string Name;
public string Description;
}
It's bigger than that, but that's the gist. I want to create a table that will list each of the items in a list of MyClass.
Hi,
I'm trying to build a proof of concept for aspnet core application that use Telerik Reports. I'm using Visual Studio Update 3 and aspnet core RTM.
I followed this article http://docs.telerik.com/reporting/mvc6nugetpackages and I couldn't reach.
My questions are:
1. Do you have nuget packages for the Telerik Reports for MVC6 that is build for aspnet core RTM.
2. How can I get them as trials to build my proof of concept.
Hi,
Visual Studio 2013 Impossible to get controls from toolbox Telerik.Reporting since i have updated my telerik Library from telerik control panel.
I have try, to do "Telerik --> Telerik Reporting --> Upgrade Wizard" and Nothing new : toolbox for report controls (table, label, etc...) are always locked.
Somebody have idea ?
THANKS for your help !
Hi,
For past couple of days I am struggling with creating a report that has multiple group by columns using a List control. I have also checked tutorial links but still not able to make the desired behavior to work in my report. I am attaching a sample trdx report due to data sensitivity in my actual report. I am also attaching the snapshot containing desired format for List control. I am not sure whether I have used the correct/better approach for my scenario.
Thanks for your help in advance.
How can I get info abut datasources, i have in a trdp file.
I can unpack file to report object, unfortunatly i cannot found any Public property contains datasources. Is it possible to figure out at run time Which Datasources (at least datasource names and Attached Object class names for ObjectDatasources)?
Hello,
I use TR Q2 2015.
I want to do a mailmerge with a Word document. Uisng a RadRichTextBox this works.
However I want to use to create giro's (Acceptgiro in Ducth) which customers can send in to their bank, and the bank automatically process it.
This means values like amount, references, accountnumbers etc. have to be in very precize places.
For this I have placed those fields in a separate textboxes, whicj I can drag to the requested location
If I do mailmerge from C# using Word automation This works fine.
When I import the Word document and open it in the RadRichTextBox, the textboxes disappear.
How can I create a Word document and make sure the mege field are in the exact positions when using a RadRichTextBox?
Attached the template with textboxes I've created.
Kind regards
Jeroen