Completed
Last Updated: 16 Oct 2017 10:28 by ADMIN
ADMIN
Dimitar
Created on: 25 Sep 2017 09:36
Category:
Type: Bug Report
1
FIX. RadDataEntry - the text boxes are not visible when material theme is used.
To reproduce:
- Just open the ThemeViewer and type some text in the RadDataEntry.

Workaround:
foreach (RadPanel item in radDataEntry1.Controls[0].Controls)
{
    var textBox = item.Controls[0] as RadTextBox;
    if (textBox != null)
    {
        textBox.TextBoxElement.TextBoxItem.HostedControl.MinimumSize = new Size(0, 24);
    }
}
0 comments