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