我有一个带有一些控件(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 Combobox 更简单...您知道获取组合框值的其他干净方法吗?