您的位置:首页 > 其它

Coolite学习笔记----ComBoBox绑定数据源

2011-05-22 20:32 316 查看
绑定方式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();
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: