Extjs GridPanel description

Source: Internet
Author: User

Extjs GridPanel description

1. In Ext, the table control must contain column definition information and specify the table data storage. Column information is defined by columns, while data storage is defined by store.

2. store is responsible for converting various raw data (JSON object arrays, etc.) into Ext. data. Record type objects.

It contains two parts: proxy and reader. Proxy specifies the way to obtain data. reader refers to how to parse this pile of data.

Simple store template code:

Var store = Ext. data. store ({proxy: {type: "ajax", url: "", reader: {type: "json", totalProperty: "count", root: "root", idProperty: "id" }}, fields: [{name: 'id', mapping: "id" },{ name: 'name', mapping: "name" },{ name: "desc", mapping: 'description'}]});


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.