我有一些控件(ExtJS的和ASP)这样的形式:
<ext:ComboBox ID="Countries" runat="server" .../>
<asp:CheckBox ID="cb1" runat="server" />
我想给使用参数BaseParams
的的store
对象:
<ext:Parameter Name="cid" Value="Ext.get('#{Countries}').getValue()" />
<ext:Parameter Name="cbv" Value="#{cb1}.dom.checked" />
这也成为:
Ext.apply( options.params,{
"cid":Ext.get('CountryCities1_Countries').getValue(),
"cbv":Ext.get("CountryCities1_cb1").dom.checked}
);
如你所见得到ASP.Net复选框值比ExtJS的组合框简单......你知道其他清洁方式获得组合框的值?