I have a gridview that displays fine in the app.
Cells with multiple values show up as:
Value 1
Value 2
Value 3
Within the cell.
But on exporting the grid the cells value is all on one row within the cell.
How to get the exported excel sheet to look like what is displayed on the apps grid.
This is what I am currently setting in code:
objGrid.BestFitColumns();
spreadExporter = new Telerik.WinControls.Export.GridViewSpreadExport(objGrid)
{
ExportVisualSettings = true,
SheetName = strSheetName,
FileExportMode = Telerik.WinControls.Export.FileExportMode.NewSheetInExistingFile
};
exportRenderer = new Telerik.WinControls.Export.SpreadExportRenderer();
Hello Telerik Team,
I want to add Clear Button in RadDropDownList like RadTextBox.
I have tried this in design time (Edit UI Elements >> RadDropDown TextBoxElement >> ShowClearButton).
But Nothing was happened.
How Can I add Clear Button in DropDownList ?
Hi,
I am using Barcode inside the cross tab.
I want to print Barcode like Figure 2. Currently shows Figure 1.
waiting for your favorable response.
Thanks.
Hi,
I read your article "Adding a WinForms control to a Ribbon Bar" https://www.telerik.com/support/kb/winforms/details/adding-a-winforms-control-to-a-ribbon-bar
Is there also a simple way to add such a control in place of a RibbonTab.
Thank you in Advance
Kind Regards,
Dominik
When I programmatically use go to bookmark on the richtexteditor the bookmark is shown on the editor in the bottom of the page is there a way to show on the top of the page?
I attached two pictures to explain batter the first one how the method gotobookmark is working and the second how i would like to be.
Thanks!
First of all I really like the new VirtualKeyboard and it is doing a good job so far.
Nethertheless I've found an issue that the keyboard is not opening below the associated control the first time it is shown.
After closing and reopening the keyboard it is on the correct position. This behaviour only occurs on the right half of the screen.
Is this a bug or am I doing anything wrong?
Attached you can find a sample project.
I have the following code snippet
byte[] pdfAsByteArray = File.ReadAllBytes(@"D:\a_images\2_b.jpg");
Stream stream = new MemoryStream(pdfAsByteArray);
radPdfViewer.LoadDocument(stream);
There is no issue with the image or with the image permissions but it is not displaying in the radpdfviewer
Hello.
after applying localization with RadSchedulerLocalizationProvider on radScheduler, the returned value of reminder was wrong.
for example the "5 minutes" changed to "5 hours" in my database.
in greek "5 minutes" is "5 λεπτά"
applied culture is set to "el-GR".
Thank you.