Unplanned
Last Updated: 16 May 2019 05:02 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 07 Nov 2018 08:38
Category: GridView
Type: Bug Report
0
FIX. RadGridView - ConditonalFormatting form is not wide enough to fit the content in TelerikMetroBlue theme
Workaround:

        private void radGridView1_ConditionalFormattingFormShown(object sender, EventArgs e)
        {
            ConditionalFormattingForm f = sender as ConditionalFormattingForm;
            if (f != null)
            {
                f.Width += 5;
            }
        }
0 comments