Hello,
I would like to create a report where the user has two checkboxes and has the choice to either show or not display a crosstab and/or graph when generating the report.
I am working with Telerik Report Designer with Telerik Reporting REST service and using HTML5 MVC Report Viewer as a report viewer.
the management of this need is done when defining the report or I have to add js events handler in my viewer ?
Thanks !
Hello all,
i have a problem which i cannot solve. It´s a mistery to me.
I have a table where i want to sum up the weight if a second field has a special number in it.
The follwing should sum up every field where the category transporcat is 1,2 or 3. The categoryfield is defined as string but in the case here there are only numbers in it. In this case the transportcat 1 exists one time, 2 exists one time, 3 does not exist. The weight vor cat 1 and 2 is identical with 5. So there are no differences between the data exept the transportcat.
= SUM(IIF(Fields.transportcat=3,Fields.weight,'' )) or = SUM(IIF(Fields.transportcat="3",Fields.weight,'' )) -> Result: '' which is correct
= SUM(IIF(Fields.transportcat=2,Fields.weight,'' )) or = SUM(IIF(Fields.transportcat="2",Fields.weight,'' )) -> Error - Should be '5'
Error: the input format has the wrong format?
= SUM(IIF(Fields.transportcat=1,Fields.weight,'' )) or = SUM(IIF(Fields.transportcat="1",Fields.weight,'' )) -> Result: '5' which is correct
The test data for the IIF comparison is identical except that the value of the transportcat field is different. I can also use other (4,5,6) and it is still working. Only when i use the number 2 it doesn´t ?
Regards Alex
Hello,
I want to change the dateformat of telerik reporting datepicker, when I pick any date from datepicker, it fills the date in mm/dd/yyyy format but I want to display it in dd/mm/yyyy. Please help me out to solve this.
Hello,
there are many problems with the standalone designer:

Hello,
I would like to create a report where the user has two checkboxes and has the choice to either show or not display a crosstab and/or graph when generating the report.
I am working with Telerik Report Designer with Telerik Reporting REST service and using HTML5 MVC Report Viewer as a report viewer.
the management of this need is done when defining the report or I have to add js events handler in my report viewer ?
Does any one have an example please?
regards,
I am dynamically pulling in html to display an an htmlTextBox. I've modified the style of my <ul>s like so:
<ul style="padding: 0px"> <li>test item</li></ul>This is to remove the indentation that naturally occurs with unordered lists. Unfortunately, no matter how I manipulate the padding, the htmlTextBox will indent <li>s.
Is there any way I can display an unordered list in an htmlTextBox without the indentation that usually occurs?
Do we are trying to come up with a solution for being able to print a Telerik report without viewing it in a HTML5 web application. Our client is HTML5/Javascript and the backend is RESTful web services and implementation of Websockets using Microsoft SignalR. Each client connects to the SignalR hub and therefore we have the ability to trigger client JavaScript methods from the web services or trigger hub methods from the HTML5/JavaScript clients.
At times we want to be able to print a report by clicking a button on the UI and have this pop up the bowser printer dialog without previewing the report in the HTML5 report viewer.
Looking for ideas from others that have similar functionality in their web applications. Approaches taken and results.
Thank you,
Steve