我想要帶有超鏈接的組合框顯示字段值。所選的組合框值應該以超鏈接顯示,如果我單擊所選的組合框值,它將在新選項卡中打開。帶有超鏈接的ExtJs組合框顯示字段
var multiComboMap = Ext.create('Ext.form.field.ComboBox', {
fieldLabel: 'Select multiple states',
renderTo: 'combo-map',
multiSelect: true,
//disabled: true,
displayField:'locationMap',
valueField:'locationId',
id:'combo-map',
width: 500,
labelWidth: 130,
emptyText: 'To view map select it',
store: Ext.create('Ext.data.Store', //get data for the combobox
{
fields: [
{
name: 'locationId',
type: 'int'
},{
name: 'locationName',
type: 'string'
},{
name: 'locationMap',
type: 'string'
}
],
proxy: {
type: 'ajax',
//url: '../data/users.asp',
url: '/AOP_MEETING/venueMaster.json',
reader: {
type: 'json',
root: 'venueMasterc'
}
},
autoLoad: true
}),
triggerAction:'all',
mode:'local',
typeAhead: true,
lastQuery:''
});
在此先感謝。
不知道我理解你想在這裏做的,由_「打開一個新的標籤」 _你的意思是打開一個新的瀏覽器標籤/窗口顯示鏈接是什麼?或者你想爲[TabPanel]打開一個新的[Tab](http://docs-origin.sencha.com/extjs/4.2.1/#)(http://docs-origin.sencha.com/extjs /4.2.1/#!/api/Ext.tab.Panel)? – overlordhammer
我想打開一個新的瀏覽器標籤來顯示鏈接。 – abhishek