custom.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:2k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.onReady(function(){
  2.     var ds = new Ext.data.Store({
  3.         proxy: new Ext.data.ScriptTagProxy({
  4.             url: 'http://extjs.com/forum/topics-remote.php'
  5.         }),
  6.         reader: new Ext.data.JsonReader({
  7.             root: 'topics',
  8.             totalProperty: 'totalCount',
  9.             id: 'post_id'
  10.         }, [
  11.             {name: 'postId', mapping: 'post_id'},
  12.             {name: 'title', mapping: 'topic_title'},
  13.             {name: 'topicId', mapping: 'topic_id'},
  14.             {name: 'author', mapping: 'author'},
  15.             {name: 'lastPost', mapping: 'post_time', type: 'date', dateFormat: 'timestamp'},
  16.             {name: 'excerpt', mapping: 'post_text'}
  17.         ]),
  18.         baseParams: {limit:20, forumId: 4}
  19.     });
  20.     // Custom rendering Template for the View
  21.     var resultTpl = new Ext.XTemplate(
  22.         '<tpl for=".">',
  23.         '<div class="search-item">',
  24.             '<h3><span>{lastPost:date("M j, Y")}<br />by {author}</span>',
  25.             '<a href="http://extjs.com/forum/showthread.php?t={topicId}&p={postId}" target="_blank">{title}</a></h3>',
  26.             '<p>{excerpt}</p>',
  27.         '</div></tpl>'
  28.     );
  29.     var panel = new Ext.Panel({
  30.         applyTo: 'search-panel',
  31.         title:'Forum Search',
  32.         height:300,
  33.         autoScroll:true,
  34.         items: new Ext.DataView({
  35.             tpl: resultTpl,
  36.             store: ds,
  37.             itemSelector: 'div.search-item'
  38.         }),
  39.         tbar: [
  40.             'Search: ', ' ',
  41.             new Ext.ux.form.SearchField({
  42.                 store: ds,
  43.                 width:320
  44.             })
  45.         ],
  46.         bbar: new Ext.PagingToolbar({
  47.             store: ds,
  48.             pageSize: 20,
  49.             displayInfo: true,
  50.             displayMsg: 'Topics {0} - {1} of {2}',
  51.             emptyMsg: "No topics to display"
  52.         })
  53.     });
  54.     ds.load({params:{start:0, limit:20, forumId: 4}});
  55. });