ext下拉框,选中每一项带提示功能
acceptManager_province = new Ext.form.ComboBox({ renderTo :'province', store : storeProvince, //为用户名称填充数据 valueField : 'value', displayField : 'province', fieldLabel : accept_manager_province, typeAhead : true, mode : 'local', forceSelection : true, triggerAction : 'all', emptyText : accept_manager_province_emptyText, selectOnFocus : true, width:100, [color=red]tpl: '<tpl for="."><div ext:qtip="{province}" />
想要要提示功能,还得有个前提得在Ext.onReady(function()里的第一句话加上Ext.QuickTips.init();