The realization of the serial number self-increment in ExtJs grid paging

Source: Internet
Author: User

ExtJs grid paging, by default, the ordinal number of each page is starting from 1, which is often not in line with our habits. This realizes the automatic increment of the ordinal number.

First look at the effect of the picture:

The implementation steps are as follows:

1, define global variables.

var record_start = 0;

2, the definition of the columns part of the grid.

columns : [new Ext.grid.RowNumberer({
   header : "序号",
   width : 40,
   renderer:function(value,metadata,record,rowIndex){
    return record_start + 1 + rowIndex;
   }
  }), {
   header : "项目编号",
   width : 50,
   sortable : false,
   dataIndex : "projectNumber"
  }, {
   header : "项目名称",
   sortable : false,
   dataIndex : "psName"
  }, {
   header : "基站名",
   sortable : false,
   dataIndex : "psSiteName"
  }]

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.