Telerik Forums
Community Forums Forum
3 answers
425 views

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,

Ohad
Top achievements
Rank 3
Bronze
Iron
Iron
 answered on 01 Mar 2022
1 answer
164 views

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

Hristian Stefanov
Telerik team
 answered on 01 Mar 2022
0 answers
170 views

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.

n/a
Top achievements
Rank 1
Iron
Iron
 asked on 20 Feb 2022
0 answers
236 views

Hello, 

I'm having trouble using DotNetZip (Ionic.ZLib.dll) in Fiddler. I've referenced it in OPTIONS, but I am still getting the following error:

 

Any help is appreciated

Lyc
Top achievements
Rank 1
 asked on 16 Feb 2022
1 answer
631 views

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

Stefan
Telerik team
 answered on 14 Feb 2022
1 answer
544 views
Is the Telerik NuGet feed down?  Getting timeouts using https://nuget.telerik.com/nuget feed url with automated builds through Azure DevOps.  If I open the url with a browser it prompts for credentials and then just spins and maybe after 5 minutes finally returns or sometimes returns "The service is unavailable."
Ivo
Telerik team
 answered on 09 Feb 2022
0 answers
212 views

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,

Ohad
Top achievements
Rank 3
Bronze
Iron
Iron
 updated question on 08 Feb 2022
1 answer
347 views
Are these technologies compatible on aspnet core website?
Rumen
Telerik team
 answered on 07 Feb 2022
1 answer
273 views

Hello to all,

I am stuck in a problem where files are loading at a time and the FileManager control is taking some time to load so is there any other way like "Lazy Loading" or "Custom Pagination" that I can do to improve loading speed?

Thank you.

Neli
Telerik team
 answered on 27 Jan 2022
0 answers
438 views
Como puedo exportar un informe que realicé en telerik a excel, estoy ocupando la extensión xls, sin embargo me lo entrega pero con el formato del informe, y yo pretendo pasarlo sin formato solo que respete las filas y las columnas.

private string creaReporteHomecito(ReporteHome listModel)
        {
            //CREAMOS EL REPORTE
            ReportHome home = new ReportHome();
            home.table1.DataSource = listModel.Ppi;
            home.table2.DataSource = listModel.IsrRS;
            home.table3.DataSource = listModel.IsrRA;
            home.table4.DataSource = listModel.IsrRSO;
            home.table5.DataSource = listModel.IsrRH;
            home.table6.DataSource = listModel.IsrRAR;
            home.table7.DataSource = listModel.PdI;
            home.table8.DataSource = listModel.IrE;
            home.table9.DataSource = listModel.IrR;
            home.table10.DataSource = listModel.IepsE;
            home.table11.DataSource = listModel.IepsR;


            //EXPORTAMOS EL EXCEL ReportProcessor reportProcessor
            = new ReportProcessor();
            Telerik.Reporting.InstanceReportSource instanciaReportSource = new Telerik.Reporting.InstanceReportSource();
            instanciaReportSource.ReportDocument = inicio;
            RenderingResult renderingResult = reportProcessor.RenderReport("CSV", instanceReportSource, null);
            


            //EXPORTAMOS EL EXCEL A MEMORYSTREAM
            MemoryStream ms = nuevo MemoryStream();
            ms.Write(renderingResult.DocumentBytes, 0, renderingResult.DocumentBytes.Length);
            ms.Flush();
            System.Web.Mvc.FileContentResult resultado = nuevo System.Web.Mvc.FileContentResult(ms.GetBuffer(), renderingResult.MimeType);
            result.FileDownloadName = "ReporteGeneral.CSV";

            byte[] excelBytes = ReadToEnd(ms);
            cadena excelBase = Convert.ToBase64String(excelBytes);

            volver excelBase;
        }
Daniel
Top achievements
Rank 1
 updated question on 24 Jan 2022
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?