64 lines
No EOL
2.1 KiB
JavaScript
64 lines
No EOL
2.1 KiB
JavaScript
/*
|
|
This file is part of Ext JS 3.4
|
|
|
|
Copyright (c) 2011-2013 Sencha Inc
|
|
|
|
Contact: http://www.sencha.com/contact
|
|
|
|
GNU General Public License Usage
|
|
This file may be used under the terms of the GNU General Public License version 3.0 as
|
|
published by the Free Software Foundation and appearing in the file LICENSE included in the
|
|
packaging of this file.
|
|
|
|
Please review the following information to ensure the GNU General Public License version 3.0
|
|
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
If you are unsure which license is appropriate for your use, please contact the sales department
|
|
at http://www.sencha.com/contact.
|
|
|
|
Build date: 2013-04-03 15:07:25
|
|
*/
|
|
Ext.onReady(function(){
|
|
|
|
var ds = new Ext.data.Store({
|
|
proxy: new Ext.data.ScriptTagProxy({
|
|
url: 'http://extjs.com/forum/topics-remote.php'
|
|
}),
|
|
reader: new Ext.data.JsonReader({
|
|
root: 'topics',
|
|
totalProperty: 'totalCount',
|
|
id: 'post_id'
|
|
}, [
|
|
{name: 'title', mapping: 'topic_title'},
|
|
{name: 'topicId', mapping: 'topic_id'},
|
|
{name: 'author', mapping: 'author'},
|
|
{name: 'lastPost', mapping: 'post_time', type: 'date', dateFormat: 'timestamp'},
|
|
{name: 'excerpt', mapping: 'post_text'}
|
|
])
|
|
});
|
|
|
|
// Custom rendering Template
|
|
var resultTpl = new Ext.XTemplate(
|
|
'<tpl for="."><div class="search-item">',
|
|
'<h3><span>{lastPost:date("M j, Y")}<br />by {author}</span>{title}</h3>',
|
|
'{excerpt}',
|
|
'</div></tpl>'
|
|
);
|
|
|
|
var search = new Ext.form.ComboBox({
|
|
store: ds,
|
|
displayField:'title',
|
|
typeAhead: false,
|
|
loadingText: 'Searching...',
|
|
width: 570,
|
|
pageSize:10,
|
|
hideTrigger:true,
|
|
tpl: resultTpl,
|
|
applyTo: 'search',
|
|
itemSelector: 'div.search-item',
|
|
onSelect: function(record){ // override default onSelect to do redirect
|
|
window.location =
|
|
String.format('http://extjs.com/forum/showthread.php?t={0}&p={1}', record.data.topicId, record.id);
|
|
}
|
|
});
|
|
}); |