﻿<?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. RadScheduler printing does not take in consideration the Ruler scale.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15198</link><description>RadScheduler printing does not take in consideration the Ruler scale and always print with 30 minutes timescale.</description><pubDate>Mon, 17 Jun 2013 16:19:44 GMT</pubDate></item><item><title>FIX. RadScheduler - ScrollToWorkHours does not work in DayViewGroupedByResource</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15197</link><description>ScrollToWorkHours does not work properly in DayViewGroupedByResource mode</description><pubDate>Mon, 17 Jun 2013 15:59:58 GMT</pubDate></item><item><title>FIX. RadGridView - CustomGrouping event is not firing when you change some cell value and RadGridView is data bound via DataSource property.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15192</link><description>RadGridView - CustomGrouping event is not firing when you change some cell value and RadGridView is data bound via DataSource property.

Workaround:
1.Subscribe to CellEndEdit event of RadGridView:
            this.radGridView1.CellEndEdit += new GridViewCellEventHandler(radGridView1_CellEndEdit);

2. Call Refresh method of MasterTemplate:

        void radGridView1_CellEndEdit(object sender, GridViewCellEventArgs e)
        {
            this.radGridView1.MasterTemplate.Refresh();
        }</description><pubDate>Mon, 17 Jun 2013 05:51:38 GMT</pubDate></item><item><title>FIX. RadDateTimePicker - setting the Handled property in the KeyDown event is not taken into consideration</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15191</link><description>To reproduce:
if (e.KeyData == Keys.Back)
{
    radDateTimePicker1.SetToNullValue();
    e.Handled = true;
}

Workaround:
 void radDateTimePicker1_KeyUp(object sender, KeyEventArgs e)
        {
            if (e.KeyData == Keys.Back)
            {
                radDateTimePicker1.SetToNullValue();
            }
        }</description><pubDate>Mon, 17 Jun 2013 05:26:45 GMT</pubDate></item><item><title>IMPROVE. RadChartView - Palette of the Series should be with higher priority than Area.View.Palette.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15190</link><description>RadChartView - Palette of the Series should be with higher priority than Area.View.Palette.</description><pubDate>Mon, 17 Jun 2013 03:04:08 GMT</pubDate></item><item><title>ADD. RadChartView - TrackBall does not support multiple axes</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15187</link><description>This problem is related to different serie types are added to the chartview</description><pubDate>Mon, 17 Jun 2013 01:54:35 GMT</pubDate></item><item><title>FIX. RadScheduler's TimelineView throws an exception when maximize the form and change resources per view.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15181</link><description>To work around the issue, you can set scheduler's GroupType to None, set the  ResourcesPerView property, set the GroupType to Resource:

radScheduler1.GroupType = GroupType.None;
this.radScheduler1.ActiveView.ResourcesPerView =resourcesPerView 
radScheduler1.GroupType = GroupType.Resource;</description><pubDate>Fri, 14 Jun 2013 03:09:51 GMT</pubDate></item><item><title>IMPROVE. RadScheduler - Add horizontal scroll bar in MultiDayView mode</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15180</link><description>When in multi day view if many days are being added, each day visual becomes so narrow that the application practically becomes useless. If there is horizontal scroll bar the view could be stretched and the user would be able to scroll between the days.</description><pubDate>Fri, 14 Jun 2013 02:33:05 GMT</pubDate></item><item><title>FIX. RadScheduler - GetOccurrenceStart method does not consider WeekDays option if set</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15177</link><description>If there is WeekDays option set in monthly recurrence rule and try to get the occurence start the method just adds the interval to the start day, rather than considering the WeekDays option.</description><pubDate>Thu, 13 Jun 2013 10:33:53 GMT</pubDate></item><item><title>ADD. RadChartView - Add the ability to inverse the order of the values on ordered chart axes.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15175</link><description>Currently values can only increase from left to right and from bottom to top.</description><pubDate>Thu, 13 Jun 2013 05:41:49 GMT</pubDate></item><item><title>FIX. RadDropDownList - If one calls the SelectAllText method the wrong action will be executed.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15173</link><description>If one calls the SelectAllText method of RadDropDownList two things would happen (both are wrong):
1. If the selection mode is One or None an exception is thrown
2. If the selection mode is MultiSimple or MultiExtended all items will be selected but not the text in the editor.</description><pubDate>Thu, 13 Jun 2013 02:26:56 GMT</pubDate></item><item><title>FIX. RadAutoCompleteBox - When remove token through clicking on the close button, the TextBoxElement loses focus.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15169</link><description>When working with RadAutoCompleteBox if one tries to remove a token from the collection through clicking on the close "x" button of the token the TextBoxElement of the text box loses focus, even though it look as if it still contains it.</description><pubDate>Wed, 12 Jun 2013 06:24:03 GMT</pubDate></item><item><title>IMPROVE. RadRichTextBox - add import from PDF file.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15164</link><description>RadRichTextBox - add import from PDF file.</description><pubDate>Wed, 12 Jun 2013 01:56:00 GMT</pubDate></item><item><title>FIX. RadChartView - Getting Error When trying to drill down PieChart</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15162</link><description>When trying to drill down PieChart on RadChartView the code throws exception.</description><pubDate>Tue, 11 Jun 2013 07:55:30 GMT</pubDate></item><item><title>FIX. RadGridView - exception when checking a checkbox cells of the current row with sorting applied</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15161</link><description>To reproduce:
- Add a checkbox column to a grid
- Add the following code to the ValueChanged event:
    void radGridView1_ValueChanged(object sender, EventArgs e)
        {
            if (radGridView1.CurrentColumn.Name == "BoolColumn")
            {
                radGridView1.EndEdit();
            }
        }
- Start the app, sort by the checkbox column and click the checkbox in the current row

Workaround:
void radGridView1_ValueChanged(object sender, EventArgs e)
        {
            if (radGridView1.CurrentColumn.Name == "BoolColumn")
            {
                radGridView1.EndEdit();
               radGridView1.TableElement.UpdateLayout();
            }
        }</description><pubDate>Tue, 11 Jun 2013 05:15:58 GMT</pubDate></item><item><title>FIX. LightVisualElement - tabs are not rendered</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15160</link><description>To reproduce:

  public Form2()
        {
            InitializeComponent();

            MyControl c = new MyControl();
            c.Dock = DockStyle.Fill;
            this.Controls.Add(c);
        }

   public class MyControl : RadControl
        {
            protected override void CreateChildItems(RadElement parent)
            {
                base.CreateChildItems(parent);


                LightVisualElement element = new LightVisualElement();
                element.Text = "Hello" + "\t" + "World"; 
                element.StretchHorizontally = true;
                element.StretchVertically = true;
                parent.Children.Add(element);
            }
}

Workaround:
  public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();

            MyControl c = new MyControl();
            c.Dock = DockStyle.Fill;
            this.Controls.Add(c);
        }

        public class MyControl : RadControl
        {
            protected override void CreateChildItems(RadElement parent)
            {
                base.CreateChildItems(parent);


                LightVisualElement element = new MyElement();
                element.Text = "Hello" + "\t" + "World"; 
                element.StretchHorizontally = true;
                element.StretchVertically = true;
                parent.Children.Add(element);
            }

            public class TextGraphics : RadGdiGraphics
            {
                const float TabWidth = 100;

                public TextGraphics(Graphics g)
                    : base(g)
                {

                }

                public override void DrawString(string drawString, Rectangle rectangle, Font font, Color color, ContentAlignment alignment, StringFormat stringFormat, Orientation orientation, bool flipText)
                {
                    stringFormat.SetTabStops(0, new float[] { TabWidth });
                    base.DrawString(drawString, rectangle, font, color, alignment, stringFormat, orientation, flipText);
                }

                public override void DrawString(string drawString, Rectangle rectangle, Font font, Color color, ContentAlignment alignment, StringFormat stringFormat, ShadowSettings shadow, System.Drawing.Text.TextRenderingHint textRendering, Orientation orientation, bool flipText)
                {
                    stringFormat.SetTabStops(0, new float[] { TabWidth });
                    base.DrawString(drawString, rectangle, font, color, alignment, stringFormat, shadow, textRendering, orientation, flipText);
                }

                public override void DrawString(string drawString, RectangleF rectangle, Font font, Color color, ContentAlignment alignment, StringFormat stringFormat, Orientation orientation, bool flipText)
                {
                    stringFormat.SetTabStops(0, new float[] { TabWidth });
                    base.DrawString(drawString, rectangle, font, color, alignment, stringFormat, orientation, flipText);
                }

                public override void DrawString(string drawString, RectangleF rectangle, Font font, Color color, ContentAlignment alignment, StringFormat stringFormat, ShadowSettings shadow, System.Drawing.Text.TextRenderingHint textRendering, Orientation orientation, bool flipText)
                {
                    stringFormat.SetTabStops(0, new float[] { TabWidth });
                    base.DrawString(drawString, rectangle, font, color, alignment, stringFormat, shadow, textRendering, orientation, flipText);
                }
            }

            public class MyElement : LightVisualElement
            {
                protected override void PaintElement(Telerik.WinControls.Paint.IGraphics graphics, float angle, SizeF scale)
                {
                    base.PaintElement(graphics, angle, scale);
                }

                protected override void PaintText(IGraphics graphics)
                {
                    graphics = new TextGraphics(graphics.UnderlayGraphics as Graphics);
                    base.PaintText(graphics);
                }
            }
        }
    }</description><pubDate>Tue, 11 Jun 2013 04:52:30 GMT</pubDate></item><item><title>FIX. RadListView - If one sets the Scroller.ScrollState to ScrollState.AlwaysHide the mouse wheel and kinetic scrolling stops working.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15159</link><description>Steps to reproduce:
1. Add a RadListView to a form
2. Add items so the vertical scroll bar appears.
3. Set the Scroller.ScrollState to ScrollState.AlwaysHide
this.radListView1.ListViewElement.ViewElement.Scroller.ScrollState = ScrollState.AlwaysHide;
4. Set the EnableKineticScrolling to true.
Run the project and try to scroll with the mouse wheel or with the Kinetic scrolling. You will see that nothing happens.</description><pubDate>Mon, 10 Jun 2013 13:58:07 GMT</pubDate></item><item><title>FIX. Windows8Theme - There is missing style of RadCheckBoxElement.ToggleState = Intermediate state.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15158</link><description>Windows8Theme - There is missing style of RadCheckBoxElement.ToggleState = Intermediate state.</description><pubDate>Mon, 10 Jun 2013 13:39:21 GMT</pubDate></item><item><title>FIX. RadScheduler - Appointments.EndUpdate() does not refresh the Scheduler view element</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15153</link><description>this.radScheduler1.Appointments.EndUpdate();

Does not refresh the Scheduler view element.</description><pubDate>Mon, 10 Jun 2013 07:21:35 GMT</pubDate></item><item><title>FIX. RadSpinEditor - changing Hexadecimal property change the control's Value [</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15149</link><description>If I set a RadSpinEditor.Hexadecimal to true, then false without reading the value, the value will steadily increase.

Workaround:
    public class MySpinEditor : RadSpinEditor
    {
        public new bool Hexadecimal
        {
            get
            {
               return base.Hexadecimal;
                
            }
            set
            {
                decimal oldValue = base.Value;
                base.Hexadecimal = value;
                base.Value = oldValue;
            }
        }
        public override string ThemeClassName
        {
            get
            {
                return typeof(RadSpinEditor).FullName;
            }
            set{base.ThemeClassName = value; }
        }
    }</description><pubDate>Mon, 10 Jun 2013 04:03:30 GMT</pubDate></item><item><title>ADD. RadChartView - Add a member property to the pie series that will allow to bind the legend title.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15148</link><description>We should add a way for users to bind a property in the data source that will be used as a legend title for pie data points.</description><pubDate>Mon, 10 Jun 2013 02:53:55 GMT</pubDate></item><item><title>FIX. RadCommandBar - CommandBarDropDownList does not show its items when located in the overflow list</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15140</link><description>Data-bounded CommandBarDropDownList shows only currently selected item when the CommandBarDropDownList located into overflow list.

Workarround: Assign the CommandBar's BindingContext explicitly

	public partial class Form1 : Form
	{
		
		public Form1()
		{
			InitializeComponent();
                        this.commandBarDropDownList1.BindingContext = this.BindingContext;
		}</description><pubDate>Thu, 06 Jun 2013 10:18:10 GMT</pubDate></item><item><title>FIX. HighContrastBlack theme - there are missing states in RadGridView styling</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15139</link><description>FIX. HighContrastBlack theme - there are missing states in RadGridView styling. For example IsSelected state.</description><pubDate>Thu, 06 Jun 2013 09:18:12 GMT</pubDate></item><item><title>FIX. RadGridView - ComboBox column - The combo box column falls in an invalid state if one changes the value of any of the objects in the data source.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15138</link><description>Steps to reproduce:
1. Add a combobox column to a grid 
2. Set DisplayMember, ValueMember and a data source to the column
3. Change a property in the data source that is used as value in the combo column

You will see that the combo column will not display text for the item which value was changed</description><pubDate>Thu, 06 Jun 2013 09:04:52 GMT</pubDate></item><item><title>IMPORVE. RadScheduler - improve the selection of the cells into RadScheduler to support Ctrl-key.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15137</link><description>IMPORVE. RadScheduler - improve the selection of the cells into RadScheduler to support Ctrl-key.
This will allow to users to select cells/days with space between them.</description><pubDate>Thu, 06 Jun 2013 05:52:11 GMT</pubDate></item><item><title>IMPROVE. RadScheduler - Add CellSelected event that will be firing when the cell is selected.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15136</link><description>IMPROVE. RadScheduler - Add CellSelected event that will be firing when the cell is selected.</description><pubDate>Thu, 06 Jun 2013 05:42:56 GMT</pubDate></item><item><title>IMPROVE. RadGridView - does not scroll correctly when AutoSizeRows and EnableFastScrolling are set to true.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15134</link><description>IMPROVE. RadGridView - does not scroll correctly when AutoSizeRows and EnableFastScrolling are set to true.</description><pubDate>Thu, 06 Jun 2013 03:56:43 GMT</pubDate></item><item><title>FIX. RadScheduler -  e.Appointment.BackgroundId property in AppointmentFormatting event does not work correctly.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15128</link><description>RadScheduler -  e.Appointment.BackgroundId property in AppointmentFormatting event does not work correctly, when you open Edit Appointment  dialog form to edit the Background color of selected appointment.

Steps to reproduce:
1. Subscribe to AppointmentFormatting event and set e.Appointment.BackgroundId property.
2. Create new Appointment via Edit Appointment dialog form.
3. Open the the appointment via Edit Appointment dialog form and change the Background color.
4. Close the Edit Appointment dialog form.

Work around:
Do not set this property in AppointmentFormatting event.</description><pubDate>Wed, 05 Jun 2013 05:20:34 GMT</pubDate></item><item><title>ADD. RadTreeView - the Nodes collection of the control does not contain the filtered nodes and the users cannot access all nodes in the control</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15127</link><description>To reproduce:

radTreeView1.Filter = "new";
var node = new RadTreeNode( "test" );
radTreeView1.Nodes.Add( node );
//here the node is not in the Nodes collection
if ( radTreeView1.Nodes.Contains( node ) == false )
{
 radTreeView1.Nodes.Add( new RadTreeNode( "test" ) );
}

Workaround: remove the filter, perform the desired check and restore the filter</description><pubDate>Wed, 05 Jun 2013 04:14:06 GMT</pubDate></item><item><title>FIX. RadTreeView - the vertical scroll remains visible when the tree is filtered</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15126</link><description>To reproduce:
  radTreeView1.Filter = "new";
            radTreeView1.Nodes.Add("new Node");
            for (int i = 0; i &lt; 1000; i++)
            {
                radTreeView1.Nodes.Add(new RadTreeNode("test"));
            }

Workaround:
            radTreeView1.TreeViewElement.Update(RadTreeViewElement.UpdateActions.Reset);</description><pubDate>Wed, 05 Jun 2013 02:50:08 GMT</pubDate></item><item><title>FIX. RadGridView - incorrect caret position in editor with when standard mask is used</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15123</link><description>To reproduce, use the following code:
        Dim decimalCol As New GridViewMaskBoxColumn
        decimalCol.FieldName = "DecimalPhone"
        Me.RadGridView1.Columns.Add(decimalCol)
        decimalCol.DataType = GetType(Decimal)
        decimalCol.FormatString = "{0:(###) ###-####}"
        decimalCol.MaskType = MaskType.Standard
        decimalCol.Mask = "(###) ###-####"

Try the following cases:
1. Go to an empty cell and press "1" -&gt; the result is that you see the mask "(1__) ___-_____", however the caret is before it and continuing to type in the editor will replace the already added character
2. Click on an empty cell - the cell is opened for edit, however, the mask is not displayed. Furthermore, when you start typing and you press "1" -&gt; the result is that you see the mask "(1__) ___-_____", however the caret is before it and continuing to type in the editor will replace the already added character</description><pubDate>Tue, 04 Jun 2013 10:57:24 GMT</pubDate></item><item><title>FIX. RadRibbonForm - the icon of the form is misplaced when the form is maximized and Windows 7 Basic theme is used</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15111</link><description>To reproduce:
- Set the Windows theme to Windows 7 Basic
- Start a RadRibbonForm and maximize it

Workaround:

void Form1_Resize(object sender, System.EventArgs e)
{
    if (this.WindowState == FormWindowState.Maximized)
    {
        this.RibbonBar.RibbonBarElement.IconPrimitive.Padding = new Padding(5, 5, 0, 0);
    }
    else
    {
        this.RibbonBar.RibbonBarElement.IconPrimitive.Padding = Padding.Empty;
    }
}</description><pubDate>Mon, 03 Jun 2013 03:48:49 GMT</pubDate></item><item><title>FIX. RadGridView - Printing - When a Right-To-Left grid is printed some values are not painted in the same way as they appear in the grid cell.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15110</link><description>When a Right-To-Left grid is printed the text of all print cells should be drawn with the StringFormatFlags.DirectionRightToLeft.

Example:
RadGridView with RightToLeft set to Yes
A decimal column with negative values
the values in the decimal column are drawn as 96-, 88- etc
if this grid is printed the values will be -96, -88</description><pubDate>Mon, 03 Jun 2013 03:21:42 GMT</pubDate></item><item><title>FIX. RadGridView - the TextMaskFormat property of GridViewMaskBoxColumn is not taken into consideration</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15104</link><description>To reproduce, use the following code:
((GridViewMaskBoxColumn)radGridView1.Columns["MaskEditBoxColumn"]).DataType = typeof(decimal);
((GridViewMaskBoxColumn)radGridView1.Columns["MaskEditBoxColumn"]).FormatString = "{0:(###) ###-####}";
((GridViewMaskBoxColumn)radGridView1.Columns["MaskEditBoxColumn"]).MaskType = MaskType.Standard;
((GridViewMaskBoxColumn)radGridView1.Columns["MaskEditBoxColumn"]).Mask = "(###) ###-####";
((GridViewMaskBoxColumn)radGridView1.Columns["MaskEditBoxColumn"]).TextMaskFormat = MaskFormat.ExcludePromptAndLiterals;

and add a numeric value in one of the column cells. Result -&gt; Exception has been thrown by the target of an invocation.

Workaround: Use a custom type converter:
((GridViewMaskBoxColumn)radGridView1.Columns["MaskEditBoxColumn"]).DataTypeConverter = new MyConverter();



        public class MyConverter : TypeConverter
        {
            public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
            {
                return sourceType == typeof(string);
            }

            public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
            {
                if (destinationType == typeof(string))
                {
                    return true;
                }
                return base.CanConvertTo(context, destinationType);
            }

            public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
            {
                if (destinationType == typeof(string))
                {
                    string s = value.ToString();
                    s= s.Insert(0, "(");

                    if (value.ToString().Length &gt; 3)
                    {
                       s= s.Insert(4, ")");
                    }

                    if (value.ToString().Length &gt; 7)
                    {
                        s= s.Insert(8, "-");
                    }

                    return s;
                }

                return base.ConvertTo(context, culture, value, destinationType);
            }

            public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
            {
                string s = value.ToString();
                s = s.Replace("(", "");
                s = s.Replace(")", "");
                s = s.Replace("-", "");
                return Convert.ToDecimal(s);

            }
        }</description><pubDate>Fri, 31 May 2013 09:32:00 GMT</pubDate></item><item><title>ADD. Data Validation component, which allows the user to set at design time the validation requirements to sets of controls</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15100</link><description>ADD. Data Validation component, which allows the user to set at design time the validation requirements to sets of controls</description><pubDate>Fri, 31 May 2013 07:40:20 GMT</pubDate></item><item><title>FIX. RadDock - the control falls in an invalid state when a drag operation is started and the context menu is opened</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15098</link><description>These are the steps to reproduce the bug:

1. Start dragging a docked window tab (but don't leave the tab bounds for now).
2. While still holding the left mouse button, click the right mouse button to let the context menu appear.
3. Now drag the tab outside the tab bar until the window gets undocked (for example to the blue region above the docked windows).
4. Finish dragging by releasing the left mouse button.
5. Move the mouse cursor over the title bar of another docked window -&gt; the window is undocked without interacting with it and will stick to the cursor until you click the mouse button to release it.

Workaround:
   bool flag = false;
        public Form1()
        {
            InitializeComponent();
            
            ContextMenuService menuService = this.radDock1.GetService&lt;ContextMenuService&gt;();
            menuService.ContextMenuDisplaying += menuService_ContextMenuDisplaying;

            DragDropService service = this.radDock1.GetService&lt;DragDropService&gt;();
            service.Starting += service_Starting;
        }

        void service_Starting(object sender, StateServiceStartingEventArgs e)
        {
            e.Cancel = flag;
            flag = false;
        }

        void menuService_ContextMenuDisplaying(object sender, ContextMenuDisplayingEventArgs e)
        {
            flag = true;
        }</description><pubDate>Fri, 31 May 2013 06:40:48 GMT</pubDate></item><item><title>FIX. RadMenu - Issue when one menu item has a mnemonic with a certain letter and another one has a shortcut with the same letter.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15097</link><description>Steps to reproduce:
1. Add a RadMenu to a form
2. Add menu item with two sub menu items
3. Add a mnemonic to the first one e.g. &amp;First
4. Add a shortcut to the second with the mnemonic letter of the first one e.g. Crtl + F
5. Run the application and open the menu popup, press Ctrl + F and you will see that the second item will be clicked and then the first one will be clicked as well.

The reason for this is that RadMenu and the PopupManager are both registered to listen for windows messages. When the popup handles the shortcut the popup receives a message and it handles the mnemonic.</description><pubDate>Fri, 31 May 2013 04:58:23 GMT</pubDate></item><item><title>IX. RadGridView - UserAddedRow is not fired when the AddNewRowPosition is Bottom and the NewRowEnterKeyMode is EnterMovesToNextCell</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15092</link><description>To reproduce set AddNewRowPosition is Bottom and the NewRowEnterKeyMode is EnterMovesToNextCell and add a new row via na UI

Workaround:
        void radGridView1_RowsChanged(object sender, GridViewCollectionChangedEventArgs e)
        {
            if (e.Action == NotifyCollectionChangedAction.Add &amp;&amp; radGridView1.CurrentRow is GridViewNewRowInfo)
            {

            }
        }</description><pubDate>Thu, 30 May 2013 09:14:05 GMT</pubDate></item><item><title>FIX. RadPageView - In BackstageView the tool tip of item close button is showing if you set ShowItemCloseButton property to true.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15090</link><description>RadPageView - In BackstageView the tool tip of item close button is showing if you set ShowItemCloseButton property to true.

Work Around:
set ShowItemCloseButton property to false.</description><pubDate>Thu, 30 May 2013 08:39:30 GMT</pubDate></item><item><title>FIX. RadTimePicker - when styled with Aqua theme the up arrow points downwards</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15084</link><description>To reproduce:
- Use RadTimePicker in a project and apply the Aqua theme to it.</description><pubDate>Thu, 30 May 2013 04:21:32 GMT</pubDate></item><item><title>FIX. RadGridView - the PropertyName property from the event arguments of the SortChanged event is not populated</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15083</link><description>To reproduce:
- just subscribe to the event, sort the grid to fire it and check the property value

Wordaround:
((SortDescriptor)e.NewItems[0]).PropertyName</description><pubDate>Thu, 30 May 2013 03:55:23 GMT</pubDate></item><item><title>FIX. RadPdfViewer - links are not working properly.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15078</link><description>The PDF file with 3 pages and the first page contains 2 links: "test 1" and "test 2"
"test 1" links to the 2nd page
"test 2" links to the 3rd page.
The links always point to the 3rd page</description><pubDate>Wed, 29 May 2013 11:27:51 GMT</pubDate></item><item><title>ADD. RadGridView Export - Users should be able to choose which child view to export.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15073</link><description>Currently all export mechanisms export the first child view of a hierarchy row. There should be a mechanism to allow users to choose which view to be exported.</description><pubDate>Wed, 29 May 2013 03:34:44 GMT</pubDate></item><item><title>FIX. RadScheduler freezes when scroll if the value of the DisplayedCellsCount is greater then 8</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15072</link><description>Steps to reproduce:
            radScheduler.ActiveViewType = SchedulerViewType.Timeline;
            radScheduler.GetTimelineView().ShowTimescale(Timescales.Hours);
            radScheduler.GetTimelineView().GetTimescale(Timescales.Hours).DisplayedCellsCount = 10;//set 8 for workarround.

            radScheduler.ActiveView.StartDate = DateTime.Today;
            radScheduler.GetTimelineView().RangeStartDate = DateTime.Today.AddHours(7);
            radScheduler.GetTimelineView().RangeEndDate = DateTime.Today.AddDays(1);
            radScheduler.GetTimelineView().ResourcesPerView = 5;

            radScheduler.GroupType = GroupType.Resource;
            radScheduler.SchedulerElement.SetResourceHeaderAngleTransform(SchedulerViewType.Timeline, 0);</description><pubDate>Tue, 28 May 2013 03:31:10 GMT</pubDate></item><item><title>FIX. RadRibbonBar - missing visual states in the RibbonBarGroup Popup</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15066</link><description>When RadGallery is collapsed there are missing scroll buttons arrow.
Also hover state of the gallery items is missing.</description><pubDate>Fri, 24 May 2013 08:43:14 GMT</pubDate></item><item><title>FIX. RadList Control - Rebind method does not work correctly.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15065</link><description>RadList Control - Rebind method does not work correctly. 

WorkAround:

        RadListControl.DataSource = Nothing
        RadListControl.DataSource = list</description><pubDate>Fri, 24 May 2013 07:19:52 GMT</pubDate></item><item><title>FIX. RadListView - Drag dropping items between two list views stops working after several drag drops in both directions.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15058</link><description>Steps to reproduce:
1. Add two RadListViews to a form.
2. Fill them with some items
3. Set AllowDragDrop to true on both
4. Run the project and drag drop items from one list view to the other and than back several times.

At one point you will be unable to move certain items from one of the list views.</description><pubDate>Thu, 23 May 2013 08:02:15 GMT</pubDate></item><item><title>FIX. RadListView - The drag drop service does not allow one tho drag an item from one list view and drop it over the items of another.</title><link>http://www.telerik.com/support/pits.aspx#/public/winforms/15057</link><description>Steps to reproduce:
1. Add two RadListViews to a form.
2. Fill them with some items
3. Set AllowDragDrop to true on both
4. Run the project and try to drag an item from one list view and drop it over the items of the other.

You will see that the item is not moved but instead remains in the source list view. You will be able to drop the item in the target list view if you drop it over the list view element.</description><pubDate>Thu, 23 May 2013 07:58:31 GMT</pubDate></item><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></channel></rss>