Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6684291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:55:23+00:00 2026-05-26T04:55:23+00:00

I am new to ExtJS. Currently I have grid implemented as shown below. But

  • 0

I am new to ExtJS. Currently I have grid implemented as shown below.enter image description here

But I want to show the same information in a different way like showing in boxes, as shown below. How do I implement this?enter image description here

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T04:55:24+00:00Added an answer on May 26, 2026 at 4:55 am

    You haven’t specified which version of Ext JS you are using. So, will give you solution for both versions:

    In ExtJS 3.x

    You can make use of the Ext.DataView class. Here is an example of dataview. Even though the example makes use of the images, you can easily modify the view, but changing the template. Now, you have to work on the pagination bar. You will have to make use of the bbar property and create a toolbar. This toolbar will have your navigation buttons. So, you will have something like this:

    var panel = new Ext.Panel({
        id:'person-view',
        frame:true, 
        title:'User Grid',
        bbar: [{
            text: Prev,
            iconCls: 'prev-icon'
        },{
            text: Next,
            iconCls: 'next-icon'
        }],
        items: new Ext.DataView({
            store: yourStore,
            tpl: yourTemplate,
            autoHeight:true,
            multiSelect: false,
            overClass:'x-view-over',
            itemSelector:'div.thumb-wrap',
            emptyText: 'No users to display',
    
        })
    });
    

    [Obviously, the above code is not complete. You will have to add your store, template, other properties and event listeners according to user needs.]

    In ExtJS 4.x

    You will have to make use of Ext.view.View class. Here is a skeleton code:

    Ext.define('MyApp.view.members.Display',{
        extend: 'Ext.panel.Panel',
        alias : 'widget.memberslist',       
        initComponent: function() {
    
            this.template = Ext.create('Ext.XTemplate',
                '<tpl for=".">',
                    '<div class="member">',
                        'Name : {name} <br/>',
                        'Title : {title}',              
                    '</div>',
                '</tpl>'
            );
    
            this.store = Ext.create('MyApp.store.Members');
            this.bbar = this.buildToolbar();        
            this.items = this.buildItems();
    
            this.callParent(arguments); 
        },
        buildItems: function() {
    
            return [{
                xtype: 'dataview',
                store: this.store,
                id: 'members',
                tpl: this.template,
                itemSelector: 'div.member',
                overItemCls : 'member-hover',
                emptyText: 'No data available!'         
            }]
        },
        buildToolbar : function() {
    
            return [{
                text: 'Previous',
                action: 'prev'
            },{
                text: 'Next',
                action: "next"
    
            }];
        }
    });
    

    The above code makes use of the new MVC architecture. You will have to add the event listeners etc in your controller.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm new to extjs 4. I have to use same from in different events
I have a problem with a Ext.Grid.EditorGridPanel, I am currently using ExtJS 2.3.0, that
I have my data to show in a standard ExtJs grid. The state is
I have an ExtJS grid like so: var grid = new Ext.grid.GridPanel({ ... });
In my extjs column model, here is what i have: new Ext.grid.ColumnModel({ columns: [
I have ExtJS GRID with checkcolumn, which is declared this way: // the check
I'm new to ExtJS and only have minimal javascript skills in general. I'm going
I am new to ExtJS. I want to implement two tables. First one will
I am new to extJs. I want to make the border of a textarea
I'm currently playing with ExtJS 4 for my new project. I'm using MVC architecture

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.