2

我正在创建一个具有这样标记的 Sitecore Sheer UI 向导

<WizardFormIndent>
   <GridPanel ID="FieldsAction" Columns="2" Width="100%" CellPadding="2">
      <Literal Text="Brand:" GridPanel.NoWrap="true" Width="100%" />
      <Combobox ID="Brand" GridPanel.Width="100%" Width="100%">
         <!-- Leave empty as I want to populate available options in code -->
      </Combobox>
   <!-- Etc. -->
</WizardFormIndent>

但是我似乎找不到在旁边的代码中向组合框“品牌”添加选项的方法。有谁知道如何完成下面的代码?

[Serializable]
public class MySitecorePage : WizardForm
{
    // Filled in by the sheer UI framework
    protected ComboBox Brands;

    protected override void OnLoad(EventArgs e)
    {
        base.OnLoad(e);
        if (!Context.ClientPage.IsEvent)
        {
             IEnumerable<Brand> brandsInSqlDb = GetBrands();

             // this.Brands doesn't seem to have any methods
             // to add options
        }
    }

}
4

3 回答 3

7

首先,我假设您使用的是 Sitecore.Web.UI.HtmlControls 中的 Sitecore Combobox(而不是 Telerik 控件)?

查看反射器,它最终会做这样的事情:

foreach (Control control in this.Controls)
{
    if (control is ListItem)
    {
        list.Add(control);
    }
}

所以我希望你需要通过你的brandsInSqlDb建立一个循环,实例化一个ListItem并将它添加到你的Brands Combobox。类似的东西

foreach (var brand in brandsInSqlDb)
{
    var item = new ListItem();
    item.Header = brand.Name; // Set the text
    item.Value = brand.Value; // Set the value

    Brands.Controls.Add(item);
}
于 2013-03-07T12:48:02.107 回答
1

它应该是小写的B(Combobox 不是 ComboBox)。完整的命名空间是:

protected Sitecore.Web.UI.HtmlControls.Combobox Brands;

然后您可以添加选项,例如:

ListItem listItem = new ListItem();
this.Brands.Controls.Add((System.Web.UI.Control) listItem);
listItem.ID = Sitecore.Web.UI.HtmlControls.Control.GetUniqueID("ListItem");
listItem.Header = name;
listItem.Value = name;
listItem.Selected = name == selectedName;
于 2013-03-07T13:44:49.273 回答
0

我这样做的方式是首先从页面访问该Combo框:

ComboBox comboBox = Page.Controls.FindControl("idOfYourComboBox") as ComboBox

现在您可以访问您在页面中定义的控件。现在你要做的就是给它赋值:

 foreach (var brand in brandsInSqlDb)
{
    comboBox .Header = brand.Name; // Set the text
    comboBox .Value = brand.Value; // Set the value
    Brands.Controls.Add(item);
}
于 2013-03-08T20:08:20.347 回答