aspxcombobox在飞行中填充

时间:2010-05-26 09:28:59

标签: asp.net javascript firefox combobox devexpress

Aspxcombobox在运行中正常运行,但是对于其他浏览器,当使用箭头键进行导航时,第二个依赖控件,总是有第一个下一个值而不是当前值,所以我有点延迟...

2 个答案:

答案 0 :(得分:1)

致大卫,

是的,它类似于在Asp.NET webforms中级联DropDowns。 在第二个组合框上使用回调事件的一些代码(即使其他控件也不是问题 - 应该是类似的问题):

protected void cmbCity_Callback(object source, DevExpress.Web.ASPxClasses.CallbackEventArgsBase e)
    {
    int CountryID = Convert.ToInt32(cmbCountry.SelectedIndex.ToString());

    taLocationOPP.FillByCountry(dsOPP_Tracking.tblLocation, CountryID);
    cmbCity.DataSource = dsOPP_Tracking.Tables["tblLocation"];
    cmbCity.ValueField = "iLocationId";
    cmbCity.TextField = "strLocation";
    cmbCity.DataBind();
    cmbCity.SelectedIndex = 0;


}

<强> P.S。

  

cmbCountry是父组合框......

通常我会得到所需的结果,但是在firefox中有一些延迟,比如..等等......正如发布的问题所描述的......

感谢您的努力:)

答案 1 :(得分:0)