惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
Y
Y Combinator Blog
Engineering at Meta
Engineering at Meta
D
Docker
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
大猫的无限游戏
大猫的无限游戏
腾讯CDC
P
Proofpoint News Feed
A
About on SuperTechFans
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
LangChain Blog
MyScale Blog
MyScale Blog
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
N
Netflix TechBlog - Medium
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

博客园 - Andy

Delphi Access violations 问题的解决 Coolite Destop 动态生成菜单 - Andy ext js window的 AnimateTarget属性 - Andy ext 从头开始 extjs 控件 触发事件 的几种方式 ext js gridpanel绑定到动态生成的store - Andy coolite的一点东西 - Andy - 博客园 Coolite 换肤 Coolite 中 遍历formlayout中的anchors中的anchor 并找到其中的TextField coolite SqlDataSource - Andy - 博客园 coolite 更新 删除 修改 - Andy Coolite toolkit 数据传递 ExtStore Coolite服务端方法调用与Web.Config配置 - Andy - 博客园 Coolite 交流(转)含简单配置说明 Coolite 开发心得 coolite 分页(含Bug修复方法) coolite 为你要删除的记录增加删除验证 - Andy - 博客园 Coolite AjaxMethod - Andy - 博客园 Coolite.Ext.Web命名空间 Coolite TreePanel的数据绑定操作
Coolite ComboBox绑定方式
Andy · 2009-11-01 · via 博客园 - Andy

绑定方式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