I am attempting to utilize this example to render a report inside the browser:
http://docs.telerik.com/reporting/html5-report-viewer-howto-custom-parameters
I cannot determine the proper format for passing datetime in the JSON and continue to get "Failed to convert parameter value from a String to a DateTime"
In other words here:
reportSource: { report: "Telerik.Reporting.Examples.CSharp.Invoice, CSharp.ReportLibrary", parameters: { OrderNumber: $('#invoiceId option:selected').val() } },
If I want to pass a datetime where OrderNumber is, how do I accomplish this?
I'm running Visual Studio 2013. When I click on a trdp file it launches in the standalone editor, not the VS extension.
This makes is difficult as I cannot define my connectionString properly. I cannot have the connection string embedded within the report template as I as multiple environments.
I have uninstalled/reinstalled and repaired. Nothing makes a difference. I have had VS closed during the installation and restarted.
Thanks.
How does one set the Time portion on a DateTime parameter in the standalone report designer? My 'EndDt' DateTime parameter is using 00:00:00 as the time and I need it to be 23:59:59.
Thanks
I have a complex sql query i'm trying to embed into a report using the standalone designer.
It seems like everywhere I have DECLARE @aVariable the designer assumes I want that to be a parameter and then I get "The variable name '@aVariable' has already been declared...
How can I tell Telerik to allow my variables to be variables and not parameters?
Will I be forced to use a stored procedure?
Thanks!
Noticed that nupkg's are being made available while downloading the latest Telerik Reporting. After adding them to our private nuget feed, we realized that the nuget packages are missing the Telerik.Reporting.Services.Api.dll file. Was this intentional? Without it, then nuget package becomes useless to us because we still have to manually package that file with our solution.
Thanks!
I am trying to make a crosstab in the report designer which tells me the difference because two adjacent fields.
Data:
10, 15, 5
Body of Crosstab Desired:
10, +5, -10
I have tried RunningValue but I don't think that will really get me what I want.
Any ideas?
Thank you!
Hello. I have a panel that contains 3 textboxes (see TextBoxes.png). The second textbox has dynamic heigth (according the the length of the text) and I need the third ("OK") textbox to be always at the bottom of the panel (near "the last row" of the dynamic textbox) as showqn in Text.png (I need it to be in the red rectangle). How can I do that?
Thanks in advance.
Hello!
I have a report that I need to bind a dataset to. I have created a new dataset in Visual Studio 2012 and added my table adapter to the dataset. I go into my report and add a new data source. I select "Object Data Source" and I see my table adapter in the list. I select it and click next where I am prompted to choose a data member. These options are displayed:
No matter what I choose, when I finish the configuration and go into the data source it throws an error.
Telerik.Reporting.Processing.Data.ObjectDataSourceException: Member GetData() on type InvoiceDetailsForPrintingGetTableAdapter not found.
at Telerik.Reporting.Processing.Data.MemberMatch.ThrowMemberNotFound(Type type, String name, ObjectDataSourceParameterCollection parameters)
at Telerik.Reporting.Processing.Data.MemberMatch.FindMemberMatch(Type type, String name, ObjectDataSourceParameterCollection parameters, Type& returnType)
at Telerik.Reporting.Processing.Data.ObjectDataSourceInstanceResolver.TryResolveReturnObjectFromType(Type type, String dataMember, ObjectDataSourceParameterCollection parameters, Object& result)
at Telerik.Reporting.Processing.Data.ObjectDataSourceInstanceResolver.TryResolveAsMethodInvocation(Object dataSource, String dataMember, ObjectDataSourceParameterCollection parameters, Object& instance)
at Telerik.Reporting.Processing.Data.ObjectDataSourceInstanceResolver.ResolveDataSource(Object dataSource, String dataMember, Boolean evaluateParametersValues)
at Telerik.Reporting.Processing.Data.ObjectDataSourcePropertiesResolver.ResolveDataSourceProperties(ISimpleDataProvider provider, Object dataSource, String dataMember, IEnumerable`1 parameters)
at Telerik.Reporting.Processing.Data.ObjectDataProviderBase`1.ResolveDataSourceProperties()
at Telerik.Reporting.Processing.Data.ObjectSchemaAdapter.<GetFields>d__1.MoveNext()
at Telerik.Reporting.Processing.Data.SimpleSchemaAdapter.AddDataMeasures(SimpleDataModel model)
at Telerik.Reporting.Processing.Data.SimpleDataProvider`1.GetSchemaCore()
at Telerik.Reporting.Processing.Data.DataProvider`1.Telerik.Reporting.Processing.Data.IDataProvider.GetSchema()
at Telerik.Reporting.Data.Design.DataSourceDesignerBase.Telerik.Reporting.Design.Interfaces.IDataSchemaProvider.GetSchema()
at Telerik.Reporting.Data.Design.DataSourceService.GetSchemaFromContext(Object context)
at Telerik.Reporting.Data.Design.DataSourceService.Telerik.Reporting.Design.Interfaces.IDataSourceService.GetCurrentDataItemSchema()
at Telerik.Reporting.Design.DataExplorerControl.<>c__DisplayClass2.<RefreshDataSource>b__0()
But there is a GetData on my data set - I verified it by going into the data set designer and it says "GetData(@cutOff, @invoiceId)" under the GetTableAdapter. I need to be able to see the fields in the dataset in the report designer so that I can use them in the report. Any help would be appreciated!
Thanks!