Ext modifies GridPanel data, font color, css attributes, and other _ extjs

Source: Internet
Author: User
This article describes how to modify the GridPanel data, font color, and css attributes by Ext. If you need it, you can refer to Ext to modify the GridPanel data and font color, instead of EditGridPanel.

First, obtain the selected row (you can also obtain the cell ):

The Code is as follows:


Var selectedRow = grid. getSelectionModel (). getSelected ();


Modify settings:

The Code is as follows:


SelectedRow. set ("key", "value ");


To modify the background color, first obtain the row number and then the view object of the row:

The Code is as follows:


Var selectedIdx = grid. store. indexOf (selectedRow );
Var selectedView = grid. getView (). getRow (selectedIdx );


Modify the css attributes of a row:

The Code is as follows:


SelectedView. style. color = "# FF0000"; // The font turns red.

Related Article

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.