---
title: "How to create a gridview in extjs"  
description: "How to create a gridview in extjs"  
author: "Anonymous User"  
published: 2016-06-16  
updated: 2016-06-16  
canonical: https://www.mindstick.com/forum/34140/how-to-create-a-gridview-in-extjs  
category: "sencha extjs"  
tags: ["web development"]  
reading_time: 2 minutes  

---

# How to create a gridview in extjs

Can any one tell how to create a [grid view](https://www.mindstick.com/forum/477/grid-view) in Extjs.

## Replies

### Reply by Ashish Awasthi

```
 Ext.create('Ext.grid.Panel', {           title: 'User Details',           store: store,           columns: [               {                   header: 'Name',                   dataIndex: 'Name'               },               {                   header: 'User Name',                   dataIndex: 'username'               },               {                   header: 'Company',                   dataIndex: 'company'               },               {                   header: 'Email',                   dataIndex: 'Email'               },               {                   header: 'Address',                   dataIndex: 'Address'               },               {                   header: 'PhoneNo',                   dataIndex: 'phoneno'               },               {                   header: 'DOB',                   dataIndex: 'Dob'               },               {                   header: 'Registration Code',                   dataIndex: 'registrationcode',                   flex: 1               }           ],           height: 500,           width: 1000,           renderTo: Ext.getBody()       });       });
```


---

Original Source: https://www.mindstick.com/forum/34140/how-to-create-a-gridview-in-extjs

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
