HI.
I need some help.
Does calling to async method from constructor is legal ?
There Is a warning.
If not what is the alternative ?
Thanks in advance,
Hi Team ,
We have recently changed session state from InProc to Custom in web.config (we want to work with Custom session state only). and after that while generating telerik reports Events like ItemDataBound ,ItemDataBind are not getting fired .
We are using DLL version 15.1.21.616
Can someone please help with this issue ASAP ?

Hi,
I want to limit the number of characters in searchText,
my preference is to do it from the view,
And if that is not possible, I would be happy for help on how to do it from the code behind.
Thanks,
Hi,
I am using localisation as described in
https://github.com/telerik/blazor-ui/tree/master/common/localization/ServerLocalizationResx
Bu when using this approach the dialog isn't rendered as expected:
Headline contains only the host url, content becomes empty and the button without caption.
The captions of the buttons, I could solve when I introduced "Dialog_Ok" and "Dialog_Cancel" in resx. But the other texts I couldn't fix.
Any help appreciated.
From Germany
Gerd

hello,
I don't want to use the built-in export functionality that comes with HTML 5 Report.
Is there a way to download report with click in PDF format.
Thank you.
Hi,
I am using Kendo react grid in my project. It work fine in my local, but produces the following error on scrolling the grid after build and deployment.
Uncaught TypeError: Cannot read properties of null (reading 'element')
at p (drag-n-drop.js:84:24)
at useDraggable.js:149:9
at HTMLDivElement.<anonymous> (useDraggable.js:217:9)
Why am I getting this error after build and how is it working fine in my local? Please suggest a way to resolve this.
Regards
Mansi

Hi,
After all sorts of tests, I came to the final conclusion.
When I work this way:
<telerik:RadButton
Content="Clone"
Command="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=DataContext.CloneCommand}"
CommandParameter="{Binding}">
</telerik:RadButton>The Command is called properly.
But when I put it inside RadDropDownButton:
<telerik:RadDropDownButton>
<telerik:RadDropDownButton.DropDownContent>
<telerik:RadButton
Content="Clone"
Command="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=DataContext.CloneCommand}"
CommandParameter="{Binding }" >
</telerik:RadButton>
</telerik:RadDropDownButton.DropDownContent>
</telerik:RadDropDownButton>
The Command doesn't fire
Would appreciate help,
Thanks,