
Josemar Maia
Top achievements
Rank 1
Josemar Maia
asked on 11 May 2010, 09:25 PM
Is it
possible to capture a click event in a cell of a report Telerik?
11 Answers, 1 is accepted
0
Hi Josemar Maia,
As explained in the Known limitations of Telerik Reporting forum thread, Telerik Reports currently do not support interactivity. Please elaborate what exactly you're trying to achieve so that we can advise you whether it is possible or not.
All the best,
Steve
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
As explained in the Known limitations of Telerik Reporting forum thread, Telerik Reports currently do not support interactivity. Please elaborate what exactly you're trying to achieve so that we can advise you whether it is possible or not.
All the best,
Steve
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Oscar
Top achievements
Rank 1
answered on 23 Dec 2010, 06:59 AM
Hi ,
We have purchased Telerik reporting Q3 and we are starting to migrate our crystal reports to Telerik, but one thing we have not been able to do is to create an onclick event on a textbox to do some custom logic. The predefined actions are too limited to do what we need .... we also tried to implement IAction, but it doesnt have methods to override, so that didnt work either.
Is it possible to do this somehow?
Thanks
We have purchased Telerik reporting Q3 and we are starting to migrate our crystal reports to Telerik, but one thing we have not been able to do is to create an onclick event on a textbox to do some custom logic. The predefined actions are too limited to do what we need .... we also tried to implement IAction, but it doesnt have methods to override, so that didnt work either.
Is it possible to do this somehow?
Thanks
0
Hello Oscar,
Currently there is no out of the box way for a custom action and this functionality is logged in our database as feature request. Please provide details on your custom logic, so that we can have your scenario in mind as well, when starting working on this.
Happy Holidays!
All the best,
Steve
the Telerik team
Currently there is no out of the box way for a custom action and this functionality is logged in our database as feature request. Please provide details on your custom logic, so that we can have your scenario in mind as well, when starting working on this.
Happy Holidays!
All the best,
Steve
the Telerik team
0

Farid Hayati
Top achievements
Rank 1
answered on 04 Jul 2011, 02:54 PM
Is there any way to achieve onclick event on textbox/table cell?
I want to add a custom onclick javasript to cell/textbox after that i want to take the cell value and do some logic onclient and show a page in radwindow.
Thanks
I want to add a custom onclick javasript to cell/textbox after that i want to take the cell value and do some logic onclient and show a page in radwindow.
Thanks
0
Hi Farid,
If we understand correctly your particular scenario, you want to use the report to "post" some kind of "commands" for your application that are not valid from outside the application. Although we're not familiar with your application we would suggest extracting these actions from the reports to the application. This way the reports will contain only the relevant information and will be really portable - that is you can export them to PDF or Excel and can open them outside your application.
To answer your question directly, you can accomplish such functionality by utilizing Hyperlink Action with a similar Target Url e.g.:
= "http://www.yourdomain.com/radwindow.aspx?MyKey=" + ReportItem.Value
where ReportItem.Value would get you the cell value and you can get it within code like this:
string query = (string)Request.QueryString["MyKey"];
Regards,
Steve
the Telerik team
If we understand correctly your particular scenario, you want to use the report to "post" some kind of "commands" for your application that are not valid from outside the application. Although we're not familiar with your application we would suggest extracting these actions from the reports to the application. This way the reports will contain only the relevant information and will be really portable - that is you can export them to PDF or Excel and can open them outside your application.
To answer your question directly, you can accomplish such functionality by utilizing Hyperlink Action with a similar Target Url e.g.:
= "http://www.yourdomain.com/radwindow.aspx?MyKey=" + ReportItem.Value
where ReportItem.Value would get you the cell value and you can get it within code like this:
string query = (string)Request.QueryString["MyKey"];
Regards,
Steve
the Telerik team
Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!
0

Jose
Top achievements
Rank 1
answered on 15 Dec 2011, 04:09 PM
Hi,
I need to do double-click in a detail element of report and read the value for custom actions in my app.
If this is not possible, I need to access from my app an item from the Report that is shown in a ReportViewer control. I use Siverlight ReportViewer.
thanks,
Jose
I need to do double-click in a detail element of report and read the value for custom actions in my app.
If this is not possible, I need to access from my app an item from the Report that is shown in a ReportViewer control. I use Siverlight ReportViewer.
thanks,
Jose
0
Hello Jose,
Custom actions are not supported (see Adding Interactivity to Reports for supported cases).
Currently the reporting engine is not compatible with Silverlight and it requires .NET framework to perform its operations. In other words the reports reside on the server and you cannot process them in your Silverlight application directly and Telerik Reporting Service WCF service enables the remote access to the Telerik Reporting Engine. The Reporting Service acts as a communication interface between the client programs and the report server.
Regards,
Steve
the Telerik team
Custom actions are not supported (see Adding Interactivity to Reports for supported cases).
Currently the reporting engine is not compatible with Silverlight and it requires .NET framework to perform its operations. In other words the reports reside on the server and you cannot process them in your Silverlight application directly and Telerik Reporting Service WCF service enables the remote access to the Telerik Reporting Engine. The Reporting Service acts as a communication interface between the client programs and the report server.
Regards,
Steve
the Telerik team
Q3’11 of Telerik Reporting is available for download. Register for the What's New in Data Tools webinar to see what's new and get a chance to WIN A FREE LICENSE!
0

Abhishek
Top achievements
Rank 1
answered on 31 Oct 2014, 10:47 AM
In addition to above question, I also need columns header click event to implement sorting for each columns on the records.
e.g There are 7 columns on report and need to sort the report based on the header clicked.
e.g There are 7 columns on report and need to sort the report based on the header clicked.
0
Hi Josemar,
You can check this KB article for more information and a sample on how to create interactive sorting.
Regards,
IvanY
Telerik
You can check this KB article for more information and a sample on how to create interactive sorting.
Regards,
IvanY
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
0

Hal
Top achievements
Rank 2
answered on 13 Jan 2015, 11:43 PM
Hello Ivan,
Is there a complete sample somewhere? I have a problem with the last phase of it and get a "Missing or invalid parameter value" on the action. I am sure it is something silly and easy, but if I had the referenced "Attached Example" I will model against that.
Many thanks in advance,
Hal
Is there a complete sample somewhere? I have a problem with the last phase of it and get a "Missing or invalid parameter value" on the action. I am sure it is something silly and easy, but if I had the referenced "Attached Example" I will model against that.
Many thanks in advance,
Hal
0
Hi Hal,
I have attached a complete VS report example in the referenced KB article.
Regards,
Peter
Telerik
I have attached a complete VS report example in the referenced KB article.
Regards,
Peter
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.