Localization of Telerik Reports with different Cultures- in MVC application - telerik

I am currently working on Telerik Reporting with localization.i am new to telerik reports.please Can any one help me how to localize telerik reports to display in the language of a specific culture in my MVC application. For example, my report has to be displayed in both English and Malay as per user request.

Thank you for your reply. We walk through this"Localization in ASP.NET MVC 4 "article,and we rechecked what mistake we done previously,we follow all the steps which mentioned in ther telerik reporting official document but we missed settings in route.config file. now the issue is resolved by applying those settings.

Add localization in Telerik Report is made in a few steps (that you can easily find in the official documentation) :
Build your report as usual. Make it in English for instance.
Click anywhere on the report area then click right to open the report Properties window. There, set the report Localizable property to true.
Select Malay in the Language property list.
You can change the static text into Malay.
As you save the design view, you see that another resource file is created resulting architecture like this:
MyReport.cs
MyReport.Designer.resx
MyReport.ms.resx
MyReport.resx
MyReport

Related

RTE control unexpecting clears after switching to another tab Web Forms

I am using the Syncfusion RichTextEditor on my Web Forms project and have trouble with unexpected clearing the data.
I initialize RTE control and other Web Forms controls in Page_Load method using the condition if (IsPostBack = true).
After I switch to another tab and IsPostBack = false the default Web Forms controls are initialized and have the values but Syncfusion RTE is empty.
The question is why the RTE doesn't save the data as another Web Froms Controls and what would be the solution?
Initializing:
Switching between pages (RTE is in the TableComments):
We have validated your reported problem in EJ RTE control in Web Forms project. But we were unable to reproduce your reported problem in our end, the value of RTE maintained properly when switching the Tab. We have recorded video for your convenience, which can be downloaded from the below link.
https://www.syncfusion.com/downloads/support/directtrac/305022/ze/RTE_Value-1627060724
We have also attached the sample for your convenience, please refer to the below link for sample application.
https://www.syncfusion.com/downloads/support/directtrac/305022/ze/RTE_Tab-226725218
Please check the above sample, if the issue still persists in your application. Please share some additional details it will be help us to provide you the prompt solution.
Share us the RTE rendering code block.
If you face any script error in console window of the browser, then please share us those error screenshots.
Share us the issue replicating sample or else replicate your reported issue in the shared sample.
Share us the screen recorded video with issue replicating steps.
We can also raise query in Syncfusion forums.
https://www.syncfusion.com/forums
Regards,
Muthukrishnan K

How to find Oracle APEX Interactive report template

I need to make style changes to Oracle apex IR (apex version 4.2). For that purpose where can i find the template of it. ? is it saved inside table or procedure ?
Interactive reports are held in a region and the region can have a template, but has no effect on its content, such as an IR.
While you can define report templates for classic reports, this is not possible for interactive reports.
You cannot control the structure (html) it puts out.
You can however change the style of it by applying CSS to the appropriate elements. You don't have need to alter the source it puts out. Defining selectors and using your browser tools to inspect everything you can definitely influence the look and feel.
Word of warning though: heavily applying CSS will bring some trouble when upgrading to apex 5, as IRs have been changed a lot. This means you'll have to change selectors quite a bit while also doing more setup on the IR.
If you'd supply more info on the kind of change you'd want to make to the IR, answers could be more specific and concrete.
You can find Oracle Interactive reports template from
PAGE RENDERING SECTION
Right Click your INTERACTIVE REPORT
Click Edit Report Attributes
Then template is under Layout and Pagination Section
But i doubt you can edit the template in there.
If you are looking for adding a template to be used in your report then follow these steps
Go to the Main Page of your application
Then go to Shared Components
Then Search for User Interface Section
Under this section, Click Templates, this is where you can add template for any type of item(report, region, page, etc..)
Read these article for customizing report template
http://www.apexninjas.com/blog/2011/03/customizing-report-templates/
http://rimblas.com/blog/2014/05/using-conditions-with-column-templates/
http://www.eberapp.com/pls/apex/f?p=BLOG:READ:0::::ARTICLE:5976400346831048
http://apex.shak.us/post/1145946801/fully-control-your-interactive-reports-toolbar
You can create new template under apex:
Application Builder/Application #/Shared Components/Templates

odoo / OpenERP V8 - Tutorial on QWeb Reports

I am trying to start with odoo. One of the most import thing for us would be to generate different layout for sale orders.
I've started with this document: https://github.com/odoo/odoodays-2014/blob/master/v8_reporting_engine/index.rst
It is from the "odoodays 2014" and shows how to customize an existing report. This works fine. I don't understand the points under "Generic / particular report".
Now I'm lost trying to add a new report (starting with a copy of the exisiting report) with a custom template.
I've tried to add a new item in the report view in settings, but I can't add any linked qweb views (I've added a new one, but it didn't get a new ID).
I've tried to create a copy in the views directory of the addon but it didn't help.
Is there any tutorial for this ?
Is there somebody who can give me some pointers how to add a new report ?
After searching around I've come to this solution. I've translated all the menu headers from German, because I'm using Odoo in German.
reports are listed in Settings / Reporting / Reports
you can click one of the reports
if you edit one of the reports you can click on "Search for linked QWeb Views" - you can click and change these views. They are in HTML and are used for the data in the reports
New reports are typically added with a plugin.
If you would like to change the report with the website editor you can install the website builder. If you change one of the reports from PDF to HTML (in Settings / Reporting / Reports) you get a popup when you're generating the report.
In this popup you can change the report template. With this you can change the template with the website builder tools.
These reports are saved in the database in the table ir_ui_view. If you change to another database they still have the original reports (this was my big fear - that changing the reports changes them for all databases).
Header and footer are still changed in the company settings with RDL.
So basically everything from the odoodays-2014 document is working like they've showed on this website - it was just pretty hard to find out how these things worked.

in telerk mvc grid, editing and inserting scenarioes with AJAX binding of complex objects

In Telerik documentation we must use server binding when binding complex objects.
How can we activating Insertion and Editing mode in Telerik mvc grid with ajax binding of complex objects?
how we can customize the whole of insert form and edit form
ie. drawing drop down lists for properties of reference types
thanks in advance
How about using server edit template for that, is it applicable? I crawled the online MVC demos on their site and hit upon this one.
I found a solution.
I am using Client Edit Templates for this scenario but there is a problem in the ScriptRegisterar I think, the problem related to registering Telerik DropDown javascript files.
I made initial solution which is to add a line of code to the ScriptRegisterar to explicit register the javascript file "telerik.list.js"
OR add a dummy Telerik DropDown list in the same page where you want it to appear in the grid, and you have to hide it using css.
This is a bug in the final version of telerik 2010.3.1110
Telerik has released the hotfix for this bug in the version 2010.3.1111
check the link and download the hotfix:
http://www.telerik.com/community/forums/aspnet-mvc/grid/script-registrar-not-loading-scripts-for-controls-used-in-client-templates.aspx

Telerik RadGrid working examples

I'm looking for some examples of production websites that currently use the Telerik Rad Grid. I'd really like to see some real world scenarios in action, other than the Telerik RadGrid demo. Does anyone know of any websites that use it?
This article from their website says that MSDN, TechNet, and CodePlex websites are using pieces of their components.
"Microsoft has chosen to implement RadEditor in the Wiki Annotation Editor...[and] all Project Discussion pages, becoming the custom inline editor."
Here is one for you... The first tab uses the RadGrid control and the second tab uses the RadScheduler control...
[link redacted per request of site owner]
I will post blog on this later to demonstrate
There are some case studies on their website. like for winforms, asp.net ajax etc.
Most controls like that are used in internal webapps. It is hard to provide public facing examples of sites using DataGrid-like at all(not impossible, just rare), let alone by one vendor on one platform.

Resources