Modify the contents and style of the cell format in the DataTables list

Source: Internet
Author: User

DataTables is a very powerful list control, can give developers to save a lot of page development, OK, we directly into the title, modify the contents and style of DataTables cell, very simple to see the code

Modify Style

var table = $ (' #table_id '). DataTable ({                 ......                 " Createdrow ": function  ( row, data, index )  {                     if  ( data[ ' Opnum '] > 1000 )  {//red display with more than 1000 operation Times                          $ (' TD ',  Row). EQ (1). css (' font-weight ', ' bold '). CSS ("Color", "red");                     }                 },      &nBSP;        &NBSP, ...}); 

In doing so, the contents of the first column satisfying the condition (the DataTables column subscript is starting from 0) will turn red.

Modify Content

var table = $ (' #table_id '). DataTable ({                 ......                 " Createdrow ": function  ( row, data, index )  {                     if  ( data[ ' ProductName '] == ' iphone6 plus '  )  {                         $ (' TD ',  row). eq (2). HTML ('-');                     }                 },                 }); 

If the product is 6p, then the cell reset to-, no goods, hehe

All right, it's that simple, try it.

Modify the contents and style of the cell format in the DataTables list

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.