Completed
Last Updated: 13 Feb 2014 13:18 by Jesse Dyck
ADMIN
Stefan
Created on: 14 Aug 2013 10:40
Category: Editors
Type: Bug Report
2
FIX. RadTextBox - the text is not visible on minimize and restore
To reproduce:  
            RadTextBox txtAction = new Telerik.WinControls.UI.RadTextBox();
            txtAction.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Controls.Add(txtAction);

Workaround:
void txtAction_Resize(object sender, EventArgs e)
{
            txtAction.TextBoxElement.InvalidateMeasure(true);
            txtAction.TextBoxElement.UpdateLayout();
  }
1 comment
Jesse Dyck
Posted on: 15 Aug 2013 04:14
This seems like a general issue on several controls.  We are also experiencing this on the RadGalleryElement. After adding an item, it is not visible, we use same workaround as for the textbox, invalidate and update and voila the item is visible.

Please v