您好,匿名用户
随意问技术百科期待您的加入

ExtJS4.x 如何在Tpl模板中添加分页控件

+2 投票

如题: 
在下拉框中有一个Tpl模板,如何在加一个分页工具栏

Ext.require([
            'Ext.form.field.ComboBox',
            'Ext.form.FieldSet',
            'Ext.tip.QuickTipManager',
            'Ext.data.*'
        ]);
        
        // The data for all states
        var states = [
            {"abbr":"AL","name":"Alabama","slogan":"The Heart of Dixie"},
            {"abbr":"AK","name":"Alaska","slogan":"The Land of the Midnight Sun"},
            {"abbr":"AZ","name":"Arizona","slogan":"The Grand Canyon State"}
        ];
        
        Ext.onReady(function(){
                        
            // Define the model for a State
            Ext.regModel('State', {
                fields: [
                    {type: 'string', name: 'abbr'},
                    {type: 'string', name: 'name'},
                    {type: 'string', name: 'slogan'}
                ]
            });

            // The data store holding the states
            var store = Ext.create('Ext.data.Store', {
                model: 'State',
                data: states
            });

            // ComboBox with a custom item template
            var customTplCombo = Ext.create('Ext.form.field.ComboBox', {
                fieldLabel: 'Select a single state',
                renderTo: 'customTplCombo',
                displayField: 'name',
                width: 500,
                labelWidth: 130,
                store: store,
                queryMode: 'local',
                listConfig: {
                    getInnerTpl: function() {
                        return '<div data-qtip="{name}. {slogan}">{name} ({abbr})</div>';
                    }
                }
            });
        });
用户头像 提问 2013年 2月12日 @ Vergil 上等兵 (384 威望)
分享到:

1个回答

+1 投票
 
最佳答案
用户头像 回复 2013年 2月12日 @ Soraka 上等兵 (319 威望)
选中 2013年 2月12日 @Saber
提一个问题:

相关问题

+1 投票
1 回复 66 阅读
用户头像 提问 2013年 1月26日 @ Kyrie 上等兵 (240 威望)
0 投票
1 回复 50 阅读
用户头像 提问 2012年 12月1日 @ Hepheastus 上等兵 (182 威望)
0 投票
1 回复 2,097 阅读
用户头像 提问 2013年 10月14日 @ Brand 上等兵 (185 威望)
+2 投票
1 回复 50 阅读
用户头像 提问 2013年 1月14日 @ mongodb 上等兵 (152 威望)
0 投票
0 回复 23 阅读
用户头像 提问 2012年 12月1日 @ Ahri 上等兵 (292 威望)

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...