Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Peter
Created on: 22 Mar 2013 02:44
Category:
Type: Bug Report
2
FIX. RadDropDownList fires the TextChanged when placed in RadPageView and the RadPageViewPage is shown.
As a workaround in the TextChanged event check the RadDropDownList's IsLoaded property: 

private void radDropDownList1_TextChanged(object sender, EventArgs e)
{
    RadDropDownList dropDown = (RadDropDownList)sender;
    if (!dropDown.IsLoaded)
    {
    
0 comments