zoukankan      html  css  js  c++  java
  • Datatables Renderers

    Renderers

    There are occasions when working with tables that the data source for rows in the table do not contain the value that you wish to show directly in the table. You may wish to transform it to a different representation (a time stamp into a human readable format), combine data points (first and last names) or perform some computation on the value (calculating margin from turnover and expense values).

    This transformation of the original data into the value that will be shown in the DataTable is called rendering in DataTables' terminology and is performed using the columns.render option.

    Built-in helpers

    DataTables has two built in rendering helpers that can be used to easily format data - more can be added using plug-ins (see below):

    • number - for formatting numbers
    • text - to securely display text from a potentially unsafe source (HTML entities are escaped).

    The built in rendering helpers can be accessed under the DataTable.render object (since 1.11) or $.fn.dataTable.render (which is an alias to the same object). They are functions (allowing options to be passed into them) which should be immediately executed and their result assigned to the columns.render method. This might sound a little complicated, but it simply means you would use something like the following:

    1
    2
    3
    4
    {
        data: 'price',
        render: DataTable.render.number( ... )
    }

    Number helper

    The number helper provides the ability to easily format, you guessed it, numbers! When dealing with numbers, you may often wish to add formatting such as prefix and postfix characters (currency indicators for example), use a thousands separator and specify a precision for the number. This is all possible with the number helper.

    The helper function takes up to five optional parameters:

    1. The thousands separator (required)
    2. Decimal separator (required)
    3. Floating point precision - 0 for integers, 1 for a single decimal place, etc (optional)
    4. A prefix string (optional)
    5. A postfix string (optional).

    For example, to display the price data point from the data structure shown above in the format $19.99 we would use:

    1
    2
    3
    4
    {
        data: 'price',
        render: DataTable.render.number( ',', '.', 2, '$' )
    }

    This example doesn't require the thousands separator, but for larger values such as 1000 they would be formatted as $1,000.00.

    Note that if the number helper encounters a value which is not a valid number (either number or string that contains a number) it will return the value after escaping any HTML entities in it (to help protect against potential security attacks).

    Text helper

    The text helper will ensure that any potentially dangerous HTML in the source data will not be executed by escaping the HTML entities. This can be useful if the data being loaded may come from a potentially untrusted data source and can help mitigate XSS attacks.

    The text helper doesn't take any parameters making its use simply:

    1
    2
    3
    4
    {
        data: 'product',
        render: DataTable.render.text()
    }
  • 相关阅读:
    从万元户到千万富翁:6招助你蜕变
    16款有助于提升工作效率的工具
    8个身家百万的儿童创业者
    关于航模无刷电机发热问题的假想解决方案
    折腾了2个晚上无刷电调(ESC),电机终于转起来了,特此记录一下
    PWM占空比和分辨率(转)
    MSB与LSB(转)
    树莓派3uart wifi模块调试 (浪费了我3天时间的宝贵经验)
    USB加minicom使用串口
    【转】使用BBB的device tree和cape(重新整理版)
  • 原文地址:https://www.cnblogs.com/chucklu/p/15223348.html
Copyright © 2011-2022 走看看