コード例 #1
0
    protected void ContactCityEditor_Callback(object sender, CallbackEventArgsBase e)
    {
        if (string.IsNullOrEmpty(e.Parameter))
        {
            return;
        }
        var        combo = (ASPxComboBox)sender;
        ContactsBL bl    = new ContactsBL();

        combo.DataSource = bl.GetCities(e.Parameter);
        combo.DataBindItems();
    }