We are trying to access our own servers using Web Data Source and are having issues with 2 Step Authentication. I have attached the screenshot with this email on how we have set it up, and on final page when we click Download, we get 401 unauthorized.
The same Url and body parameters are working through Postman. I was wondering if you can please help us identify what maybe wrong?
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?