ASPxComboBox的联动实现

昨天在实现一个"仓库"和"库位"下拉框联动时,使用ASPxComboBox的OnSelectedIndexChanged始终没有效果,今天查询了下ASPxComboBox的使用方法才发现使用的方法错误了。在这记录下,也感谢博主分享ASPxComboBox使用方法

前端:

<dxe:ASPxComboBox ID="cbxWH" ClientInstanceName="cbxWH" runat="server" Width="100px">
                    <ClientSideEvents SelectedIndexChanged="function(s, e) {cbxLocation.PerformCallback();}" />
                </dxe:ASPxComboBox>

<dxe:ASPxComboBox ID="cbxLocation" oncallback="cbxLocation_Callback" ClientInstanceName="cbxLocation" runat="server" Width="100px">
                </dxe:ASPxComboBox>

cs事件:

protected void cbxLocation_Callback(object sender, DevExpress.Web.ASPxClasses.CallbackEventArgsBase e)
        {
            #region 库位
            cbxLocation.DataSource = null;
            cbxLocation.DataBind();
            var whCd = cbxWH.Value != null ? cbxWH.Value.ToString() : "";
            var where = string.Empty;
            if (!string.IsNullOrEmpty(whCd))
                where = " WH_CD = '" + whCd + "' ";
            EditorBinder.BindMesLocationCD(cbxLocation, where, true);
            #endregion
        }

效果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值