Coolite ComboBox绑定方式

绑定方式1:

        private void BindCombox2(ComboBox cb)
        {
            DataTable dt = new Bll.CoolingWater().GetAllCoolingWater();

            foreach (DataRow r in dt.Rows)
            {
                cb.Items.Add(new Coolite.Ext.Web.ListItem(r[1].ToString(),r[0].ToString()));
            }
        }

绑定方式2:

<ext:Store ID="StoreInfo" runat="server" AutoLoad="true"
     OnRefreshData="InitComboBox">
        <Reader>
            <ext:JsonReader ReaderID="COOLING_WATER_ID">
                <Fields>
                    <ext:RecordField Name="COOLING_WATER_ID">
                    </ext:RecordField>
                    <ext:RecordField Name="COOLING_WATER_NAME">
                    </ext:RecordField>
                </Fields>
            </ext:JsonReader>
        </Reader>
</ext:Store>
<ext:ComboBox ID="Cbo" runat="server" AllowBlank="true"
                        StoreID="StoreInfo" ValueField="COOLING_WATER_ID"
DisplayField="COOLING_WATER_NAME"
TriggerAction="All" EmptyText="-请选择-" ReadOnly="true" Width="100px">
</ext:ComboBox>

        public void InitComboBox(object sender, StoreRefreshDataEventArgs e)
        {
            Bll.CoolingWater bo = new Bll.CoolingWater();
            StoreInfo.DataSource = bo.GetAllCoolingWater();
            StoreInfo.DataBind();
        }

原文:http://hi.baidu.com/38608338/blog/item/e6c762f5376d19e67709d754.html

转载于:https://www.cnblogs.com/AndySong/archive/2009/11/01/1593779.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值