﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>WinForms PITS Issues</title><link>http://www.telerik.com</link><description>The latest issues for WinForms PITS</description><item><title>FIX. RadPropertyGrid - When one filters properties through the Search bar properties should be filtered based on their display name.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15036</link><description>Currently when one filters properties through the Search bar they are filtered based on their Name instead of the display name or label.</description><pubDate>Mon, 20 May 2013 02:40:15 GMT</pubDate></item><item><title>IMPROVE. RadAutoCompleteBox - add functionality that allow you to show Popup without typing any char.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15033</link><description>RadAutoCompleteBox - add functionality that allow you to show Popup without typing any char.</description><pubDate>Fri, 17 May 2013 07:47:24 GMT</pubDate></item><item><title>FIX. RadRichTextBox - DataChanged event is not firing when user add new word into the dictionary of spellchecker.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15032</link><description>RadRichTextBox - DataChanged event is not firing when user add new word into the dictionary of spellchecker.</description><pubDate>Fri, 17 May 2013 06:52:54 GMT</pubDate></item><item><title>ADD. TextBox in the drop-down part of RadMultiColumnComboBox that filters the grid</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15030</link><description>Currently, in RadMultiColumnComboBox, if you AutoFilter by all columns and you type a value that resides in the ID column, while the DisplayMember is the Name, pressing the Enter after typing the ID will return the Name in the textbox part which may be confusing to the user. Such a case may be solved by introducing another textbox in the drop-down part just for filtering purposes.</description><pubDate>Fri, 17 May 2013 02:40:37 GMT</pubDate></item><item><title>FIX. RadTreeView TreeViewDragDropService cannot be canceled</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15023</link><description>TreeViewDragDropService cannot be canceled</description><pubDate>Thu, 16 May 2013 07:27:51 GMT</pubDate></item><item><title>ADDITION. NEWCONTROLS Implement Open Save Dialog, allowing theme customization.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15022</link><description>Implement Open Save Dialog, allowing theme customization.</description><pubDate>Thu, 16 May 2013 07:00:44 GMT</pubDate></item><item><title>FIX. radGridView - virtual mode - error when you try to group</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15013</link><description /><pubDate>Wed, 15 May 2013 08:58:49 GMT</pubDate></item><item><title>ADD. RadDateTimePicker - add ability to customize the validating of the days in the month</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15007</link><description>For example: users should be able to enter date like this 31/02/2013 and when control lost the focus the date should convert to 28/02/2013</description><pubDate>Tue, 14 May 2013 08:32:54 GMT</pubDate></item><item><title>Fix. SmartLabelsController - PieTwoLabelColumnsStrategy throws exception if the series has two or more DataPoints with value "0";</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15003</link><description>SmartLabelsController - PieTwoLabelColumnsStrategy throws exception if the series has two or more DataPoints with value "0";

Code to reproduce:
            RadChartView pieChart = new RadChartView();

            pieChart.AreaType = ChartAreaType.Pie;
            PieSeries series = new PieSeries();
            series.DataPoints.Add(new PieDataPoint(16720, "Jan"));
            series.DataPoints.Add(new PieDataPoint(0, "Feb"));
            series.DataPoints.Add(new PieDataPoint(0, "Mar"));
            series.DataPoints.Add(new PieDataPoint(845, "Apr"));
            series.DataPoints.Add(new PieDataPoint(9459, "May"));
            series.DataPoints.Add(new PieDataPoint(0, "Jun"));

            series.ShowLabels = true;
            pieChart.Series.Add(series);</description><pubDate>Tue, 14 May 2013 03:58:38 GMT</pubDate></item><item><title>FIX. RadRibbonForm - theme is not applying correctly, when some changes are made to ribbon button while RadRibbonBar is collapsed.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15001</link><description>FIX. RadRibbonForm - theme is not applying correctly, when some changes are made to ribbon button while RadRibbonBar is collapsed.

Steps to reproduce:
1. Add button to some ribbon group.
2. Collapse the ribbon.
3. Disable this button.
4. Enable this button.
5. Expand the ribbon.

Workaround - subscribe to ExpandedStateChanged  event and reapply the theme. For example:

            this.radRibbonBar1.ExpandedStateChanged += new EventHandler(radRibbonBar1_ExpandedStateChanged);


        void radRibbonBar1_ExpandedStateChanged(object sender, EventArgs e)
        {
            this.radRibbonBar1.ElementTree.ApplyThemeToElementTree();
        }</description><pubDate>Mon, 13 May 2013 08:47:22 GMT</pubDate></item><item><title>FIX. RadRichTextBox - exception when the  SystemInformation.CaretBlinkTime is less then 0</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15000</link><description>To reproduce change the cursor blink rate to the minimum in ControlPanel and try creating an instance of RadRichTextBox

Workaround: use interop to change the SystemInformation.CaretBlinkTime:
 [DllImport("user32.dll")]
        static extern bool SetCaretBlinkTime(int uMSeconds);

        private void radButton1_Click(object sender, EventArgs e)
        {
            int blinkTime = SystemInformation.CaretBlinkTime;

            if (blinkTime &lt; 0)
            {
                SetCaretBlinkTime(int.MaxValue);

            }

            RadRichTextBox asd = new RadRichTextBox();
            asd.Dock = DockStyle.Top;
            this.Controls.Add(asd);

            if (blinkTime &lt; 0)
            {
                SetCaretBlinkTime(blinkTime);
            }
        }</description><pubDate>Mon, 13 May 2013 08:41:14 GMT</pubDate></item><item><title>Fix. RadMessageBox - SetThemeName method is not working correctly, after dispose on owner form.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14999</link><description>RadMessageBox - SetThemeName method is not working correctly, after dispose on owner form.

Workaround - Reset the radMessageBoxForm field via reflection. For example:

            var field = typeof(RadMessageBox).GetField("radMessageBoxForm", BindingFlags.NonPublic | BindingFlags.Static);
            field.SetValue(null, null);

            RadMessageBox.SetThemeName("Office2007Black");</description><pubDate>Mon, 13 May 2013 06:03:40 GMT</pubDate></item><item><title>FIX. RadGridView - cursor does not work properly, when cursor has value "Cursors.SizeWE" and mouse is moving over GroupPanelElement.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14988</link><description>FIX. RadGridView - cursor does not work properly, when cursor has value "Cursors.SizeWE" and mouse is moving over GroupPanelElement.

Steps to reproduce:
1. On a gridview make sure that a column in grouped.
2. Place your mouse on a column split just below the grouped column.
3. The cursor icon changes to a SizeWE icon to let you know that you can resize the column, This is normal.
4. Now, move the mouse (with the cursor icon = SizeWE) to the grouped column just above.
5. Now the cusor gets stucked with this SizeWE icon and never goes away on this grid. Wathever you do now the icon stays showing as a SizeWE icon.

Work Around - create custom grid behavior and override OnMouseMove method.

    public class CustomGridBehavior : BaseGridBehavior 
    {
        public override bool OnMouseMove(MouseEventArgs e)
        {
             base.OnMouseMove(e);

             GridTableElement table = this.GetGridTableElementAtPoint(e.Location);

             if (table == null)
             {
                 this.GridViewElement.ElementTree.Control.Cursor = Cursors.Default;
                 return false;
             }

             return false;
        }
    }</description><pubDate>Fri, 10 May 2013 05:56:49 GMT</pubDate></item><item><title>FIX. RadRichTextBox - The tab character has a wrong size.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14987</link><description>The width of a tab character is wrong if one opens a document containing tabs or inputs a tab character in a document.</description><pubDate>Fri, 10 May 2013 05:35:46 GMT</pubDate></item><item><title>FIX. RadTreeView - Object-Relational binding does not work correctly in editing scenario.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14984</link><description>When a tree is bound using object-relational binding the editing does not work for nodes that are on level higher than the first.</description><pubDate>Thu, 09 May 2013 10:18:53 GMT</pubDate></item><item><title>FIX. VisualStyleBuilder  - does not load all states if the theme is loaded from XML files.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14983</link><description>VisualStyleBuilder  - does not load all states if the theme is loaded from XML files.</description><pubDate>Thu, 09 May 2013 10:05:35 GMT</pubDate></item><item><title>FIX. Windows8Theme - missing drag and drop styling for RadTreeView.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14981</link><description>FIX. Windows8Theme - missing drag and drop styling for RadTreeView.</description><pubDate>Thu, 09 May 2013 08:12:11 GMT</pubDate></item><item><title>IMPROVE. RadPageView - Add support for Kinetic Scrolling.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14980</link><description>RadPageView - Add support for Kinetic Scrolling.</description><pubDate>Thu, 09 May 2013 05:41:25 GMT</pubDate></item><item><title>FIX. RadDateTimePicker - The position of the check box should be on the left side of the control.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14979</link><description>Until Q3 2012 the position of the check box has been on the left hand side of the control. After Q3 the position of the check box is between the text box and the arrow button. The correct position is on the left hand side.</description><pubDate>Thu, 09 May 2013 03:48:18 GMT</pubDate></item><item><title>ADD. RadPdfViewer - add ability to show the document pages as thumbnails</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14977</link><description>ADD. RadPdfViewer - add ability to show the document pages as thumbnails</description><pubDate>Thu, 09 May 2013 02:48:19 GMT</pubDate></item><item><title>FIX: RadGridView - One cannot create a custom summary cell element and use it through a custom column.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14975</link><description>If one follows the guide from the online documentation to create custom summary cell element he will no be able to use it in a custom column:
http://www.telerik.com/help/winforms/gridview-cells-custom-cells.html

The issue is that the GetCellType method of the column is never called for summary rows.</description><pubDate>Wed, 08 May 2013 07:13:12 GMT</pubDate></item><item><title>IMPROVE. RadScheduler - add vertical scroll bar in RadScheduler, when in MonthView</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14972</link><description>Check out the Outlook vertical scrolling abilities in MonthView</description><pubDate>Tue, 07 May 2013 08:03:12 GMT</pubDate></item><item><title>FIX. RadForm cannot be resized from top left and top right corners if theme is Win8 or VS2012</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14970</link><description>Happens with Win8 and VS2012 themes, but not with the Office themes only with form's top left and right corners. If the mouse is moved into the corner from the center of the form. From this cursor position, the form cannot be resized.  From this position, once a resize is attempted, repositioning the mouse and retrying the resize may not work at all.</description><pubDate>Tue, 07 May 2013 07:42:58 GMT</pubDate></item><item><title>FIX. RadAutoCompleteBox - exception when creating a TokenizedTextBlockElement with the TokenizedTextBlockElement(string text) constructor overload</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14964</link><description>To reproduce: add a token to the control and attempt adding the same token with this code in the CreateTextBlock event handler:

        void radAutoCompleteBox1_CreateTextBlock(object sender, CreateTextBlockEventArgs e)
        {
            if (e.TextBlock is TokenizedTextBlockElement)
            {
                foreach (RadListDataItem item in radAutoCompleteBox1.AutoCompleteItems)
                {
                    if (item.Text.ToLower() == e.Text.ToLower())
                    {
                        e.TextBlock = new TokenizedTextBlockElement("pepo");
                        break; // TODO: might not be correct. Was : Exit For
                    }
                }
            }
        }

Workaround:

        void radAutoCompleteBox1_CreateTextBlock(object sender, CreateTextBlockEventArgs e)
        {
            if (e.TextBlock is TokenizedTextBlockElement)
            {
                foreach (RadListDataItem item in radAutoCompleteBox1.AutoCompleteItems)
                {
                    if (item.Text.ToLower() == e.Text.ToLower())
                    {
                        TokenizedTextBlockElement element = new TokenizedTextBlockElement();
                        element.ContentElement.Text = item.Text;
                        e.TextBlock = element;
                    }
                }
            }
        }</description><pubDate>Tue, 07 May 2013 02:27:39 GMT</pubDate></item><item><title>ADD. Printing support for appointments that last 0 seconds.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14963</link><description>Let's say that you have an appoiment that starts at 8:30 and ends at 8:30. RadScheduler will display it as it should, but it will not be considered by the printing functionality.
We should also have in mind the case where there are several appointments starting from 8:30 and ending at 8:30.</description><pubDate>Mon, 06 May 2013 10:12:37 GMT</pubDate></item><item><title>FIX. RadSplitButton ArrowButton gets overlapped when image is inserted to the ActionButton</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14962</link><description>When image is being inserted to the ActionButton in RadSplitButton the ArrowButton might get overlaped if the text of the ActionButton is very long.

Workaround is to subtract the width of the image from the width of the text manually.

int actionButtonWidth = radSplitButton1.DropDownButtonElement.ActionButton.Size.Width;
int imageWidth = 40; // Sample rate should be equal to the width of the image in pixels

int desiredTextWidth = actionButtonWidth - imageWidth;

radSplitButton1.DropDownButtonElement.ActionButton.TextElement.MaxSize = new Size(desiredTextWidth, 0);

radSplitButton1.DropDownButtonElement.ActionButton.TextWrap = true;</description><pubDate>Mon, 06 May 2013 08:32:38 GMT</pubDate></item><item><title>FIX. RadRichTextBox - Undo command does not work if you insert text through Insert method.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14961</link><description>RadRichTextBox - Undo command does not work if you insert text through Insert method.

Code to reproduce:
radRichTextBox1.Document.Insert("Inserted text", radRichTextBox1.CurrentEditingStyle);


Work around:
1.Insert text char by char through InputBehavior.ProcessKeyPress method:

            string text = "Inserted text";
            foreach (char ch in text)
            {
                radRichTextBox1.RichTextBoxElement.ViewElement.DocumentView.InputBehavior.ProcessKeyPress(new KeyPressEventArgs(ch));
            }</description><pubDate>Mon, 06 May 2013 07:47:06 GMT</pubDate></item><item><title>ADD. Auto layout functionality</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14958</link><description>When the Font of the form changes (or the DPI setting), RadForm should be able to arrange its content so that no controls are overlapped. In addition, RadForm should increase its size when necessary.</description><pubDate>Mon, 06 May 2013 06:09:29 GMT</pubDate></item><item><title>FIX. RadDock - the control falls in an invalid state when loading invalid xml file</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14957</link><description>To reproduce, just load an invalid XML file:
            if (File.Exists("userDockState.xml"))
            {
                try
                {
                    radDock1.LoadFromXml("userDockState.xml");
                }
                catch (XmlException)
                {
                    radDock1.LoadFromXml("defaultDockState.xml");
                }
            }

Workaround:
 if (File.Exists("userDockState.xml"))
            {
                try
                {
                    radDock1.LoadFromXml("userDockState.xml");
                }
                catch (XmlException)
                {
                    radDock1.EndTransactionBlock();
                    radDock1.LoadFromXml("defaultDockState.xml");
                }
            }</description><pubDate>Mon, 06 May 2013 03:37:07 GMT</pubDate></item><item><title>FIX. RadColorDialog - the ColorChanged event of RadColorDialog is not fired</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14956</link><description>To reproduce:
RadColorDialog dialog = new RadColorDialog();
dialog.ColorDialogForm.ColorChanged

Workaround:
((RadColorSelector)dialog.ColorDialogForm.RadColorSelector).OkButtonClicked += Form1_OkButtonClicked;
//or
((RadColorSelector)dialog.ColorDialogForm.RadColorSelector).ColorChanged+= ColorDialogForm_ColorChanged;</description><pubDate>Mon, 06 May 2013 02:59:19 GMT</pubDate></item><item><title>FIX. RadTreeView - the tree should keep its selection, expanded nodes and scroll position when new record is added to its underlying data source</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14953</link><description>FIX. RadTreeView - the tree should keep its selection, expanded nodes and scroll position when new record is added to its underlying data source</description><pubDate>Fri, 03 May 2013 07:29:45 GMT</pubDate></item><item><title>FIX. RadGridView- Fillling the TableAdapter of the grid's DataSource in self-reference hierarchy freezes the grid</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14952</link><description>To reproduce: bind the grid to self reference data source, and on a button click, Fill the TableAdapter

Workaround: clear the relations to clear the cache and add them back after the adapter is filled:
RadGridView1.Relations.Clear()
        Me.Table1TableAdapter.Fill(Me.Database8DataSet.Table1)
        Me.RadGridView1.Relations.AddSelfReference(Me.RadGridView1.MasterTemplate, "TaskID", "ParentTask")</description><pubDate>Fri, 03 May 2013 06:52:08 GMT</pubDate></item><item><title>FIX. A value can't be selected by a keyboard if the value is represented by the first row</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14951</link><description>If one is using the AutoFilter functionality and want's to select the very first row of the filtered grid, s\he is not able to do so by the keyboard.</description><pubDate>Fri, 03 May 2013 05:29:58 GMT</pubDate></item><item><title>FIX. RTF importing in RadRichTextBox produces spans with black highlight color.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14948</link><description>If you import a rtf document, it produces a span instances with highlight color property set to ARGB(255,0,0,0).

Work around:

foreach (Span span in document.EnumerateChildrenOfType&lt;Span&gt;())
{
    if (span.HighlightColor == Color.FromArgb(255, 0, 0, 0))
    {
        span.HighlightColor = Color.Transparent;
    }
}</description><pubDate>Thu, 02 May 2013 08:09:39 GMT</pubDate></item><item><title>FIX. The layout of the ContentArea is not correct</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14945</link><description>Let's say that you have RadPageView in ExplorerBar mode and the Content Size mode is set to AutoSizeToBestFit. Dock two buttons in the content area to top. Run the app and you will see that the bottom of the second button is cut in some themes. This is because these themes has a border set to the content area. The border is taken into consideration by the layout and the content is cut even throught there is space for it. This happens with Windows7, Office2010Black and other themes.</description><pubDate>Thu, 02 May 2013 06:42:56 GMT</pubDate></item><item><title>ADD. Support for forms</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14937</link><description>It will be a great addition of RadPdfViewer if it supports forms/controls.</description><pubDate>Wed, 01 May 2013 08:54:01 GMT</pubDate></item><item><title>FIX. RadButton - text wrapping is not correct when an image is included in the button.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14930</link><description>To reproduce, create a RadButton on a form with the below settings.  The image is any 32x32 image. 

this.radButton1.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 
this.radButton1.Image = global::TestPopup.Properties.Resources.Image32x32; 
this.radButton1.Location = new System.Drawing.Point(13, 13); 
this.radButton1.Size = new System.Drawing.Size(131, 44); 
this.radButton1.Text = "The Quick Brown Fox"; 
this.radButton1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; 
this.radButton1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 
this.radButton1.TextWrap = true;</description><pubDate>Wed, 01 May 2013 06:13:02 GMT</pubDate></item><item><title>ADD. Convenient API for formatting particular data point elements</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14928</link><description>Currently, there seems to be no convenient API for formatting data point elements. There is a CreatePointElement event, which however does not work properly.</description><pubDate>Wed, 01 May 2013 05:22:58 GMT</pubDate></item><item><title>FIX. RadPdfViewer - does not load a pdf on Form.Load</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14927</link><description>To reproduce:
- Load a pdf file at the constructor and try to load another pdf file on Form.Load =&gt; the result is that the second pdf is not loaded.
 public Form1()
        {
            InitializeComponent();
            radPdfViewer1.LoadDocument("..\\..\\pdfSample.pdf");

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            radPdfViewer1.LoadDocument("..\\..\\test.pdf");
        }

Workaround: unload the first loaded document prior loading the second one</description><pubDate>Wed, 01 May 2013 04:58:25 GMT</pubDate></item><item><title>ADD. ChartLegend should be able to wrap its items</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14922</link><description>ChartLegendElement is not able to wrap the LegendItems</description><pubDate>Tue, 30 Apr 2013 08:23:56 GMT</pubDate></item><item><title>FIX. MDI control box does not appear when MDI child forms are hidden istead of closed</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14921</link><description>MDI control box does not appear when MDI child forms are hidden istead of closed. This happens the second time you are trying to open a previously hidden form right after hiding another MDI child form.</description><pubDate>Tue, 30 Apr 2013 06:42:58 GMT</pubDate></item><item><title>FIX. Maximized MDI child form reappears in a parent RadRibbonBar form as non-maximized</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14920</link><description>You have a scenario where there is a maximized MDI child form in a RadRibbonForm. You try to close the maximized child form from the MDI box of RadRibbonBar, but instead of getting the form closed, you programmatically hide it, so that you can reuse it further. The moment you try to show that form again, it appears non-maximized which is not a correct behavior.</description><pubDate>Tue, 30 Apr 2013 06:15:25 GMT</pubDate></item><item><title>FIX. HierarchyRowTraverser throws an exception when all levels are expanded and filter is applied</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14919</link><description>RadGrid's HierarchyRowTraverser throws an exception when all levels are expanded and filter is applied
Please, tests with the attached project.</description><pubDate>Tue, 30 Apr 2013 03:40:11 GMT</pubDate></item><item><title>FIX. Composite Filter Form editors do not appear at the right place at custom DPI</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14918</link><description>If your screen scaling is set to 125% the location of the editors that appear in the Composite Filter Form is not correct.</description><pubDate>Tue, 30 Apr 2013 03:24:41 GMT</pubDate></item><item><title>FIX. RadPageViewPage's ToolTipText property should be localizable.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14917</link><description>Workaround: set text manually on ToolTipTextNeeded event.
 private void Form1_Load(object sender, EventArgs e)
        {
            this.radPageView1.ToolTipTextNeeded += new Telerik.WinControls.ToolTipTextNeededEventHandler(radPageView1_ToolTipTextNeeded);
        }

        void radPageView1_ToolTipTextNeeded(object sender, Telerik.WinControls.ToolTipTextNeededEventArgs e)
        {
            RadPageViewStripItem item = sender as RadPageViewStripItem;
            if (item != null)
            {
                e.ToolTipText = item.Text;
            }
        }</description><pubDate>Tue, 30 Apr 2013 02:15:15 GMT</pubDate></item><item><title>ADD. Support for "G" mask.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14911</link><description>RadMaskedEditBox does not support G mask</description><pubDate>Mon, 29 Apr 2013 08:28:55 GMT</pubDate></item><item><title>ADD. Support for "G" mask.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14910</link><description>RadMaskedEditBox does not support G mask</description><pubDate>Mon, 29 Apr 2013 08:28:22 GMT</pubDate></item><item><title>FIX. RadPanorama - the tiles does not show images assigned via ImageList, if the ImageList is populated with images after the tile's ImageIndex is set</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14909</link><description>To reproduce add a tile and set its ImageIndex before adding images to the ImageList. Here is design time code:
            // 
            // radTileElement1
            // 
            this.radTileElement1.AccessibleDescription = "radTileElement1";
            this.radTileElement1.AccessibleName = "radTileElement1";
            this.radTileElement1.ImageIndex = 0;
            this.radTileElement1.Name = "radTileElement1";
            this.radTileElement1.Text = "radTileElement1";
            this.radTileElement1.Visibility = Telerik.WinControls.ElementVisibility.Visible;
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "checkmark.png");

Workaround - put the image list population before the ImageIndex setting in the designer
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "checkmark.png");
            // 
            // radTileElement1
            // 
            this.radTileElement1.AccessibleDescription = "radTileElement1";
            this.radTileElement1.AccessibleName = "radTileElement1";
            this.radTileElement1.ImageIndex = 0;
            this.radTileElement1.Name = "radTileElement1";
            this.radTileElement1.Text = "radTileElement1";
            this.radTileElement1.Visibility = Telerik.WinControls.ElementVisibility.Visible;</description><pubDate>Mon, 29 Apr 2013 04:09:55 GMT</pubDate></item><item><title>FIX. The html-like formatting concat some words if span tag with style attribute is used.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14908</link><description>If you are using span tag in cooperation with style attribute, the following html concat "Training Room B" string:

&lt;html&gt;&lt;p&gt;&lt;i&gt;&lt;span style="font-family: Microsoft Sans Serif;font-size: 13.3px;color: #C57300;"&gt;Welcome to RoBase&lt;/span&gt;&lt;/i&gt;&lt;i&gt;&lt;span style="font-family: Microsoft Sans Serif;font-size: 10.7px;color: #C57300;"&gt;,&lt;/span&gt;&lt;/i&gt;&lt;span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #000000;"&gt; Please be aware that &lt;/span&gt;&lt;span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #C50000;"&gt;Training Room A&lt;/span&gt;&lt;span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #000000;"&gt; will be off limits for the rest of the week for a much needed paint job. &lt;/span&gt;&lt;b&gt;&lt;span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #008116;"&gt;Training Room B&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #000000;"&gt; is still available and the Conference Room can be used if needed.&lt;/span&gt;&lt;span style="font-family: Calibri;font-size: 16px;color: #000000;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #000000;"&gt;See Linda to reserve it. Thanks.&lt;/span&gt;&lt;/p&gt;&lt;/html&gt;</description><pubDate>Mon, 29 Apr 2013 03:26:54 GMT</pubDate></item><item><title>FIX. RadChartView - If one sets the LabelFitMode of a CartesianAxis to Rotate the chart layout is incorrect.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14903</link><description>Steps to reproduce:
1. Add a chart to a form.
2. Add any cartesian series
3. Set the LabelFitMode of the horizontal axis to Rotate.

You will see that labels have incorrect layout.</description><pubDate>Fri, 26 Apr 2013 08:27:29 GMT</pubDate></item><item><title>IMPROVE. RadScheduler -  In Timeline view there should be an option which tells RadScheduler to layout appointments according their time.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14902</link><description>As an example, if an appointment starts at 12 o'clock on one day and ends at 12 o'clock on the next day, it should be positioned to start in the middle of the first day cell and end in the middle of the next day, instead of filling both days.</description><pubDate>Fri, 26 Apr 2013 06:00:23 GMT</pubDate></item><item><title>ADD. RadChartView - Add the ability to rotate the labels of chart series.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14898</link><description>Currently only axes labels can be rotated. There should be a way to rotate series labels as well.</description><pubDate>Fri, 26 Apr 2013 03:16:22 GMT</pubDate></item><item><title>FIX. SplitPanel - there is no property Name in Visual Studio designer.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14895</link><description>SplitPanel - there is no property Name in Visual Studio designer.</description><pubDate>Fri, 26 Apr 2013 01:01:30 GMT</pubDate></item><item><title>FIX. Demo application throws an exception in Scheduler --&gt;DataBinding example</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14892</link><description>Steps to reproduce:
1) Launch your demo application and select --&gt;scheduler --&gt;DataBinding
Select Bind to dataset
2) Try to re-size any appointment by mouse and click Save button it will revert to previous state
and you see the error.</description><pubDate>Thu, 25 Apr 2013 05:32:07 GMT</pubDate></item><item><title>ADD. Method or event which allows to format the Text in the GroupDescription Elements</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14891</link><description>For example:  If you grouping using of DateTimeGroupDescription you should be able to format date as dd.MM.yyyy  instead of Apr-22</description><pubDate>Thu, 25 Apr 2013 04:51:22 GMT</pubDate></item><item><title>ADD. Dock windows should keep its icon and image</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14889</link><description>Dock windows should keep its icon and image that is set for them in a previous state, no matter their form, tabbed, docked,</description><pubDate>Thu, 25 Apr 2013 04:03:13 GMT</pubDate></item><item><title>ADD. Dock windows should keep its icon and image</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14890</link><description>Dock windows should keep its icon and image that is set for them in a previous state, no matter their form, tabbed, docked,</description><pubDate>Thu, 25 Apr 2013 04:03:13 GMT</pubDate></item><item><title>FIX. RadTreeView - nodes parents are not cleared when the Clear method of RadTreeView is called</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14887</link><description>To reproduce: Add some nodes to a tree, and then clear them and move them to another tree. The inner nodes expand/collapse does not work correctly:

   void radButton1_Click(object sender, EventArgs e)
        {
            tree1.Nodes.Clear();

            tree2.Nodes.AddRange(nodes);
        }

        RadTreeView tree1 = new RadTreeView();
        RadTreeView tree2 = new RadTreeView();
        List&lt;RadTreeNode&gt; nodes = new List&lt;RadTreeNode&gt;();

        private void Populate(RadTreeView tree)
        {
            RadTreeNode n11 = new RadTreeNode("11");
            RadTreeNode n12 = new RadTreeNode("12");
            RadTreeNode n13 = new RadTreeNode("13");
            RadTreeNode n14 = new RadTreeNode("14");

            nodes.Add(n11);
            nodes.Add(n12);
            nodes.Add(n13);
            nodes.Add(n14);

            RadTreeNode n21 = new RadTreeNode("21");
            RadTreeNode n22 = new RadTreeNode("22");
            RadTreeNode n23 = new RadTreeNode("23");
            RadTreeNode n24 = new RadTreeNode("24");

            n11.Nodes.Add(n21);
            n11.Nodes.Add(n22);
            n11.Nodes.Add(n23);
            n11.Nodes.Add(n24);

            RadTreeNode n31 = new RadTreeNode("31");
            RadTreeNode n32 = new RadTreeNode("32");
            RadTreeNode n33 = new RadTreeNode("33");
            RadTreeNode n34 = new RadTreeNode("34");

            n21.Nodes.Add(n31);
            n21.Nodes.Add(n32);
            n21.Nodes.Add(n33);
            n21.Nodes.Add(n34);

            tree.Nodes.AddRange(nodes);
        }

1. Run
2. Expand all nodes in tree1
3. Select node 23
4. Press button move right
5. Click at "plus" at node 21. -&gt; expand collapse does not work correctly


Workaround - instead of calling the Clear method of the Nodes collection, remove them manually:
            while (tree1.Nodes.Count &gt; 0)
            {
                tree1.Nodes.RemoveAt(0);
            }</description><pubDate>Thu, 25 Apr 2013 03:15:47 GMT</pubDate></item><item><title>FIX. RadTreeView - nodes parents are not cleared when the Clear method of RadTreeView is called</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14886</link><description>To reproduce: Add some nodes to a tree, and then clear them and move them to another tree. The inner nodes expand/collapse does not work correctly:

   void radButton1_Click(object sender, EventArgs e)
        {
            tree1.Nodes.Clear();

            tree2.Nodes.AddRange(nodes);
        }

        RadTreeView tree1 = new RadTreeView();
        RadTreeView tree2 = new RadTreeView();
        List&lt;RadTreeNode&gt; nodes = new List&lt;RadTreeNode&gt;();

        private void Populate(RadTreeView tree)
        {
            RadTreeNode n11 = new RadTreeNode("11");
            RadTreeNode n12 = new RadTreeNode("12");
            RadTreeNode n13 = new RadTreeNode("13");
            RadTreeNode n14 = new RadTreeNode("14");

            nodes.Add(n11);
            nodes.Add(n12);
            nodes.Add(n13);
            nodes.Add(n14);

            RadTreeNode n21 = new RadTreeNode("21");
            RadTreeNode n22 = new RadTreeNode("22");
            RadTreeNode n23 = new RadTreeNode("23");
            RadTreeNode n24 = new RadTreeNode("24");

            n11.Nodes.Add(n21);
            n11.Nodes.Add(n22);
            n11.Nodes.Add(n23);
            n11.Nodes.Add(n24);

            RadTreeNode n31 = new RadTreeNode("31");
            RadTreeNode n32 = new RadTreeNode("32");
            RadTreeNode n33 = new RadTreeNode("33");
            RadTreeNode n34 = new RadTreeNode("34");

            n21.Nodes.Add(n31);
            n21.Nodes.Add(n32);
            n21.Nodes.Add(n33);
            n21.Nodes.Add(n34);

            tree.Nodes.AddRange(nodes);
        }

1. Run
2. Expand all nodes in tree1
3. Select node 23
4. Press button move right
5. Click at "plus" at node 21. -&gt; expand collapse does not work correctly


Workaround - instead of calling the Clear method of the Nodes collection, remove them manually:
            while (tree1.Nodes.Count &gt; 0)
            {
                tree1.Nodes.RemoveAt(0);
            }</description><pubDate>Thu, 25 Apr 2013 03:15:22 GMT</pubDate></item><item><title>FIX. RadGridView - using localized text for CustomFilterDialogTrue and CustomFilterDialogFalse causes exception when applying the fitler</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14885</link><description>To reproduce, use the following localization provider and set a fitler to a boolean column in RadGridView, via the Custom filtering dialog.

  class MyRadGridLocalizationProvider : RadGridLocalizationProvider
        {
            public const string CustomTrue = "CustomTRUE";
            public const string CustomFalse = "CustomFALSE";

            public override string GetLocalizedString(string id)
            {
                if (id == "CustomFilterDialogTrue")
                {
                    return CustomTrue;
                }
                else if (id == "CustomFilterDialogFalse")
                {
                    return CustomFalse;
                }
                else
                {
                    return base.GetLocalizedString(id);
                }
            }
        }

Workaround - create custom type converter as follows:
        public class MyBooleanConverter : BooleanConverter
        {
            public override object ConvertFrom(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)
            {
                if (value is string)
                {
                    string text = Convert.ToString(value);

                    if (text == MyRadGridLocalizationProvider.CustomTrue)
                    {
                        return true;
                    }
                    else if (text == MyRadGridLocalizationProvider.CustomFalse)
                    {
                        return false;
                    }
                }
                return base.ConvertFrom(context, culture, value);
            }
        }

and apply it to the check box column:
   radGridView1.Columns["BoolColumn"].DataTypeConverter = new MyBooleanConverter();</description><pubDate>Thu, 25 Apr 2013 02:13:36 GMT</pubDate></item><item><title>FIX. RadPdfView draws dashed lines as a solid lines</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14884</link><description>Line Style is not taken into consideration.</description><pubDate>Wed, 24 Apr 2013 09:56:40 GMT</pubDate></item><item><title>FIX. RadTreeView - Traverser throws exception if you clear and recreate all sub nodes of some node.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14883</link><description>RadTreeView - Traverser throws exception if you clear and recreate all sub nodes of some node.  

Steps to reproduce:
1. Create RadTreeView with one node.
2. Add 100 sub nodes.
3. Clear the sub nodes.
4. Move scroll.

WorkAround:

    private void RefreshNodes()
    {
      
      radTreeView1.BeginUpdate();

      this.radTreeView1.TreeViewElement.Scroller.Traverser.Position = groupNode;
      this.radTreeView1.TreeViewElement.Scroller.Traverser.Reset();

      this.radTreeView1.SelectedNodes.Clear();
      groupNode.Nodes.Clear();
 
      AddNodes(groupNode.Nodes, 1, 100);

      groupNode.Expand();
      radTreeView1.EndUpdate();

      this.radTreeView1.TreeViewElement.Update(RadTreeViewElement.UpdateActions.Reset);
    }</description><pubDate>Wed, 24 Apr 2013 07:38:04 GMT</pubDate></item><item><title>FIX. Document's CreateDeepCopy method change the numbers in all number lists</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14882</link><description>In the output document all numbers in the number lists are changed.</description><pubDate>Wed, 24 Apr 2013 07:24:43 GMT</pubDate></item><item><title>FIX. RadScheduler - the localization is not initially applied to the navigation elements (previous/next appointment)</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14879</link><description>To reproduce:
RadSchedulerLocalizationProvider.CurrentProvider = new CustomSchedulerLocalizationProvider();

radScheduler1.Appointments.Add(new Appointment(DateTime.Now.AddDays(-5), DateTime.Now.AddDays(-4)));
radScheduler1.Appointments.Add(new Appointment(DateTime.Now.AddDays(5), DateTime.Now.AddDays(4)));

Workaround:
radScheduler1.SchedulerElement.Refresh();</description><pubDate>Wed, 24 Apr 2013 07:06:29 GMT</pubDate></item><item><title>FIX. Backspace jumps the caret to before the decimal point when the MaskType is set to Numeric</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14865</link><description>Steps to reproduce:
Set MaskType to Numeric and Mask = "n2". Click into the field to deselect contents. Caret is at the end of the string. Backspace twice and the data entry caret now jumps to BEFORE the decimal point. 

Workaround:
this.RadMaskedEditBox.KeyPress += new KeyPressEventHandler(RadMaskedEditBox_KeyPress);
		}

        void RadMaskedEditBox_KeyPress(object sender, KeyPressEventArgs e)
        {
            RadMaskedEditBox textBox = ((RadMaskedEditBox)sender);
            int selectionStart = textBox.SelectionStart;
            bool beforePoint = selectionStart - 2 &gt;= 0 &amp;&amp; textBox.Text[selectionStart - 2] == '.';

            if (e.KeyChar == 8 &amp;&amp; beforePoint)
            {                
                NumericMaskTextBoxProvider numericProvider = (NumericMaskTextBoxProvider)textBox.MaskedEditBoxElement.Provider;
                numericProvider.KeyPress(sender, e);
                e.Handled = true;
                textBox.SelectionStart++;
            }
        }</description><pubDate>Tue, 23 Apr 2013 08:14:19 GMT</pubDate></item><item><title>FIX. Appointments are not alignment correctly - shifting to the left with 1 pixel</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14861</link><description>The width of a resource does not always match the column(s) underneath it, resulting in the resources shifting to the left in relation to the column(s) below. It appears to be about 1 pixel  difference per resource which becomes more noticeable with multiple resources .If you resize the form the resources will come close to matching the column(s) before jumping back to the full difference again. This issue can be demonstrated in the Scheduler-&gt;Grouping demo</description><pubDate>Tue, 23 Apr 2013 07:26:31 GMT</pubDate></item><item><title>ADD. RadGridView - improve the GridViewRelation in order to allow describing of sub-properties</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14857</link><description>One should be able to create a relation in order to produce the following hierarchy:
  public class MainObject
    {
        public ObservableCollection&lt;LibraryObject&gt; ListOfLibraryObjects { get; set; }
    }
    public class LibraryObject
    {
        public string LibraryName { get; set; }
        public TrajectoryManager TheTrajectoryManager { get; set; }
    }
    public class TrajectoryManager
    {
        public ObservableCollection&lt;TrajectoryData&gt; ListOfTrajectoryData { get; set; }
    }
    public class TrajectoryData
    {
        public string Name { get; set; }
    }

WORKAROUND:
    public class MainObject
    {
        public ObservableCollection&lt;LibraryObject&gt; ListOfLibraryObjects;
    }
    public class LibraryObject
    {
        public string LibraryName { get; set; }
        public ObservableCollection&lt;TrajectoryData&gt; ListOfTrajectoryData { get; set; }
    //    public TrajectoryManager TheTrajectoryManager;
    //}
    //public class TrajectoryManager
    //{
    //    public ObservableCollection&lt;TrajectoryData&gt; ListOfTrajectoryData;
    }
    public class TrajectoryData
    {
        public string Name { get; set; }
    }</description><pubDate>Tue, 23 Apr 2013 06:44:00 GMT</pubDate></item><item><title>FIX. RadPropertyGrid - When a drop down list editor looses focus the editor is not closed.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14855</link><description>Steps to reproduce:
1. Add a RadPropertyGrid to a form
2. Set the SelectedObject property to an object with an enum property
3. Open the enum property for edit.
4. Click on another control that can take focus e.g. the form control box buttons
You will see that the editor remains open.</description><pubDate>Tue, 23 Apr 2013 05:45:00 GMT</pubDate></item><item><title>FIX. Windows7Theme - RadGridView has incorrect behavior when AutoSizeRows property is set to true.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14852</link><description>Windows7Theme - RadGridView has incorrect behavior when AutoSizeRows property is set to true.

Steps to reproduce:
1. Create grid with several rows.
2. Set AutoSizeRows property to "true"
3. Run application and move mouse over the rows.</description><pubDate>Tue, 23 Apr 2013 03:44:54 GMT</pubDate></item><item><title>ADD. Include a property which turns off the creating of the RadControls accessible object.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14851</link><description>This property will disable the accessibility information from being sent to Windows narrator and JAWS.</description><pubDate>Tue, 23 Apr 2013 03:02:14 GMT</pubDate></item><item><title>ADD. Empty values support</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14848</link><description>RadChartView should have empty values support just like RadChart had it.</description><pubDate>Mon, 22 Apr 2013 10:01:16 GMT</pubDate></item><item><title>FIX. RadGridView - Self-reference hierarchy + grouping. If one opens a cell for edit and collapses a hierarchy row RadGridView does not behave well.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14847</link><description>Steps to reproduce:
1. Add a grid to a form 
2. Add a self-reference hierarchy data and relation
3. Group the data on a column
Enter edit mode for a cell and directly click on the expand/collapse sign of a hierarchy row.
You will see that RadGridView does not behave correctly all the time.</description><pubDate>Mon, 22 Apr 2013 09:45:29 GMT</pubDate></item><item><title>FIX. Deleting a Template in the Property Builder does work</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14846</link><description>Deleting a Template in the Property Builder does work.</description><pubDate>Mon, 22 Apr 2013 09:37:39 GMT</pubDate></item><item><title>FIX. The sender of RadDateTimePicker.KeyPress event is HostedTextBoxBase</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14840</link><description>The sender of RadDateTimePicker.KeyPress event is currently HostedTextBoxBase which is not the correct sender to expose.</description><pubDate>Mon, 22 Apr 2013 07:30:39 GMT</pubDate></item><item><title>FIX. In some border cases longer node texts are cut</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14839</link><description>If you have a node with a very long text that requires horizontal scrollbar and at the same time you have a many nodes which requires a vertical scrollbar in some border cases the long text of the node is cut off (with ellipsis).</description><pubDate>Mon, 22 Apr 2013 06:05:52 GMT</pubDate></item><item><title>FIX. RadListView - the OldValue and NewValue event args of the ItemValueChanging are swaped</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14838</link><description>FIX. RadListView - the OldValue and NewValue event args of the ItemValueChanging are swaped</description><pubDate>Mon, 22 Apr 2013 05:59:37 GMT</pubDate></item><item><title>FIX. RadTreeView - calling Update with Reset does not reflect the changes of nested objects</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14837</link><description>Workaround:
RadTreeView1.TreeViewElement.TreeNodeProvider.Reset()</description><pubDate>Mon, 22 Apr 2013 05:32:36 GMT</pubDate></item><item><title>FIX. Entering a value in a GridViewMaskBoxColumn with MaskType E-mail leads to an exception</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14836</link><description>If you have a GridViewMaskBoxColumn with MaskType set to E-mail and you try to enter and commit a value in this column, you get an exception.</description><pubDate>Mon, 22 Apr 2013 05:03:14 GMT</pubDate></item><item><title>FIX. RadGridView - If one tries to filter on two expression columns an exception is thrown.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14835</link><description>Steps to reproduce:
1. Add a grid to a form and add two expression columns
2. Enable Excel-like filtering
3. Add data
4. Run the project and filter on both expression columns

You will see an exception.</description><pubDate>Mon, 22 Apr 2013 04:19:52 GMT</pubDate></item><item><title>FIX. TimePickerElement does not expose any events</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14834</link><description>The TimePickerElement of RadTimePicker does not expose any events. However, events are needed if one needs to use this picker as an element, let's say in RadRibbonBar.</description><pubDate>Mon, 22 Apr 2013 03:49:53 GMT</pubDate></item><item><title>FIX. KeyDown event for CommandBarDropDownList does not fire</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14832</link><description>The KeyDown event for CommandBarDropDownList does not fire. The same is the situation with the DropDownListElement.</description><pubDate>Mon, 22 Apr 2013 03:47:54 GMT</pubDate></item><item><title>ADD. Provide an event which allows users to set the Cell Accessible Properties</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/14831</link><description>Provide Grid's event similar to CellFormatting event which allows users to set the Cell Accessible Properties</description><pubDate>Mon, 22 Apr 2013 03:40:04 GMT</pubDate></item></channel></rss>