private void frmConfirmInvoice_Load(object sender, EventArgs e) { ArrayList list = new ArrayList(); list.Add(new ...
分类:
其他好文 时间:
2014-09-04 13:06:09
阅读次数:
206
1、认识Ext.form.Panel表单面板 Ext.form.field.CheckBox 复选框 checkboxfieldExt.form.CheckBoxGroup 复选框组 checkboxgroupExt.form.field.ComboBox 下拉列表框 comboExt.for...
分类:
Web程序 时间:
2014-09-04 00:09:47
阅读次数:
604
扩展自 $.fn.combo.defaults。通过 $.fn.combobox.defaults 重写默认的 defaults。组合框(combobox)显示一个可编辑的文本框和下拉列表,用户可以从下拉列表中选择一个或多个值。用户可以直接输入文本到列表的顶部,或者从列表中选择一个或多个现成的值。依...
分类:
Web程序 时间:
2014-08-31 15:45:41
阅读次数:
571
今天在项目中再次碰到了问题,就是Combobox中的值如果是直接绑定很简单。简单添加项就行了。代码如下:
分类:
数据库 时间:
2014-08-31 10:27:01
阅读次数:
351
选择类控件主要包括:ComboBox、CheckBox、CheckedListBox、RadioButton、NumericUpDown以及ListBox。...
分类:
其他好文 时间:
2014-08-31 01:42:10
阅读次数:
217
VC每日一练,虽然简单,不动手试一下不能真正记住。大气象CComboBox*comboBox=(CComboBox*)GetDlgItem(IDC_COMBO1);comboBox->InsertString(0,_T("9:30"));comboBox->InsertString(1,_T("10...
分类:
其他好文 时间:
2014-08-29 15:52:58
阅读次数:
250
扩展Array的原型对象,加入indexOf方法if(!Array.prototype.indexOf){ Array.prototype.indexOf = function(target){ for(var i=0,l=this.length;i<l;i++){ if(this[i] === t...
分类:
Web程序 时间:
2014-08-29 12:44:17
阅读次数:
250
最近遇到的问题,datagrid中有动态添加的combobox,combobox已经修改为模糊匹配,而不是原来的从左到右匹配,但是在我的combobox里面有许多类似项,没办法,只能让valueFiled 为唯一值,但是保存后本来该单元格要显示valuefiled,而valuefiel必须是中文,如...
分类:
其他好文 时间:
2014-08-29 10:34:07
阅读次数:
170
var formPanel = Ext.create("Ext.form.Panel",{ title : 'formPanel', width : 400, url : 'asd.php' //默认通过Ajax提交到这个url layout : 'anchor', //布局占满整个...
分类:
Web程序 时间:
2014-08-28 00:39:18
阅读次数:
264