
Hi
I want to customise the available filter operators and change the default operator in my RadGridView
For example in a string column, I'd like to default to 'Starts With' instead of 'Contains' and want to remove the 'Ends With' operator.
Thanks
Tung

I have a Ribbon bar in Outlook view on which I want to change programmatically the font
I have managed to change the font on the bottom buttons with the following code
outlookElement = TryCast(pvMain.ViewElement, RadPageViewOutlookElement)
outlookElement.Font = MyPreference.Font
However the font of the title does not change (see attached image)
How cant I change the title font as well ?
thanks
Hello guys/girls, how are you?
I hope you can help me.
I need to use RadGridView to insert / update / delete data from MySql. VB.NET
I've used this code :
-------------------------------------------------------------------------------------------------
statustestera = Me.RadGridView1.SelectedRows.Item(0).ToString
statuspantograf = Me.RadGridView1.SelectedRows.Item(1).ToString
statusdispecer = Me.RadGridView1.SelectedRows.Item(2).ToString
statusproizvodnja = Me.RadGridView1.SelectedRows.Item(3).ToString
statusdokumentacija = Me.RadGridView1.SelectedRows.Item(4).ToString
comm.Connection = cn
comm.CommandText = "INSERT INTO TBL_Priprema_GROB(StatusTeseta, StatusPantograf, StatusDispecer, StatusProizvodnja, StatusDokumentacija) VALUES('" & statustestera & "','" & statuspantograf & "''" & statusdispecer & "','" & statusproizvodnja & "',' " & statusdokumentacija & "')"
comm.ExecuteNonQuery()
------------------------------------------------
but it returns with the Index can not be negative or less..... error.
Can you please help


I have a requirement which uses a popup launched from a grid which resides in a tool window. Default state of the tool window is auto hide.
Now, when the tool window expands and the grid is shown, the end user can click a grid command button which launches a lookup dialog. The dialog returns the selected value with an event which is handled by the eventhandler from the tool window grid.
Here's the problem: when the dialog is shown, the tool window closes. I want the window to remain expanded while the dialog is shown.
Is there a way to keep it expanded _without_ changing the tool window state (e.g. to docked)?
Any thoughts on this?

Hi All,
I have a problem referecing 'Telerik.WinControls.UI.dll' in a project. The problem message is in portuguese, but the context is the same:
Error14'Não foi possÃvel carregar arquivo ou assembly 'Telerik.WinControls.UI, Version=2015.1.225.40, Culture=neutral, PublicKeyToken=<xxxx>' ou uma de suas dependências. Ponteiro inválido (Exceção de HRESULT: 0x80004003 (E_POINTER))'<projet with dir>
Is there a solution? I've read http://www.telerik.com/forums/could-not-load-file-or-assembly-telerik-wincontrols-ui topic, but the messages are differents.
Any suggestions?
Reggards


Hello Telerik,
I want to export a file.txt to Pdf, I´m using GridViewPdfExport component but this line does not work:
Telerik.WinControls.Export.PdfExportRenderer renderer = new Telerik.WinControls.Export.PdfExportRenderer();
This is my code , taken from Export to PDF
Telerik.WinControls.Export.GridViewPdfExport pdfExporter = new Telerik.WinControls.Export.GridViewPdfExport(radGrid1);pdfExporter.FileExtension = ".pdf";pdfExporter.ShowHeaderAndFooter = true;pdfExporter.HeaderHeight = 30;pdfExporter.HeaderFont = new Font("Arial", 22);pdfExporter.Logo = System.Drawing.Image.FromFile(@"C:\temp\logo.png");pdfExporter.LeftHeader = "[Logo]";pdfExporter.LogoAlignment = ContentAlignment.MiddleLeft;pdfExporter.LogoLayout = Telerik.WinControls.Export.LogoLayout.Fit;pdfExporter.MiddleHeader = "Middle header";pdfExporter.RightHeader = "Right header";pdfExporter.ReverseHeaderOnEvenPages = true;pdfExporter.FooterHeight = 30;pdfExporter.FooterFont = new Font("Arial", 22);pdfExporter.LeftFooter = "Left footer";pdfExporter.MiddleFooter = "Middle footer";pdfExporter.RightFooter = "Right footer";pdfExporter.ReverseFooterOnEvenPages = true;pdfExporter.SummariesExportOption = SummariesOption.ExportAll;pdfExporter.FitToPageWidth = true;pdfExporter.Scale = 1.2;pdfExporter.ExportSettings.Title = "Prueba";string exportFile = @"..\..\exportedData.pdf";using (System.IO.MemoryStream ms = new System.IO.MemoryStream()){Telerik.WinControls.Export.GridViewPdfExport exporter = new Telerik.WinControls.Export.GridViewPdfExport(radGrid1);Telerik.WinControls.Export.PdfExportRenderer renderer = new Telerik.WinControls.Export.PdfExportRenderer();exporter.RunExport(ms, renderer);using (System.IO.FileStream fileStream = new System.IO.FileStream(exportFile, FileMode.Create, FileAccess.Write)){ms.WriteTo(fileStream);}}Thanks in advance.
