谁做过用extAspNet动态生成combox的案例! 特急。。。。
在后台new一个 然后设置属性,然后加入到它的父控件中
麻烦详细点好吗 我刚用ext 什么都不懂,。
这是代码。
<ext:ComboBox ID="cbSize" runat="server" FieldLabel="统计粒度" LabelWidth="80" LabelAlign="Right" Width="220">
<Items>
<ext:ListItem Text="日" Value="0" />
<ext:ListItem Text="周" Value="1" />
<ext:ListItem Text="月" Value="2" />
<ext:ListItem Text="年" Value="3" />
</Items>
<SelectedItem Value="0" />
</ext:ComboBox>
<ext:ComboBox ID="cbYear" runat="server" FieldLabel="年份" LabelWidth="80" LabelAlign="Right" Width="220">
<Items>
<ext:ListItem Text="2013" Value="0" />
<ext:ListItem Text="2014" Value="1" />
<ext:ListItem Text="2015" Value="2" />
<ext:ListItem Text="2016" Value="5" />
</Items>
<SelectedItem Value="1" />
</ext:ComboBox>
现在叫FineUI了。你去论坛fineui.com提问看看吧。一般做法是先new一个对象,然后增加子项,但是需要放在Page_Load中。