EXT dynamically add the number of grid Columns

Source: Internet
Author: User

EXT dynamically add the number of grid Columns

When making a report, you need to make the number of columns of the grid survive, and the number of columns is determined by the fields in the database. Therefore, you need to make the number of columns of the grid dynamic. After many experiments, as follows:

JSON returned by the background:

{'Action': True, 'message': 'error! ', 'Data ':[
{'Number': '1', 'text1': '3', 'info1': '4', 'special1': '5 '}
], 'Colummodle ':[
{'Header': 'sequence number ', 'dataindex': 'number', 'width': 40 },
{'Header': 'code', 'dataindex': 'text1 '},
{'Header': 'name', 'dataindex': 'info1 '},
{'Header': 'amount', 'dataindex': 'special1 '}
], 'Fieldnames': [{Name: 'number '},
{Name: 'text1'}, {Name: 'info1 '},
{Name: 'special1'}]}

VaR CM = new Ext. Grid. columnmodel (JSON. colummodle );
VaR DS = new Ext. Data. jsonstore ({
Data: JSON. Data,
Fields: JSON. fieldsnames
});

VaR grid = new Ext. Grid. gridpanel ({
Region: 'center ',
Split: True,
Border: false,
CM: cm,
DS: DS
});
Grid. Render (document. Body );

New Ext. viewport ({
Layout: 'border ',
Split: True,
Items: [grid]
});

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.