New to Kendo UI for jQuery? Download free 30-day trial

Make Grid Cells Temporarily Blink Depending on DataItem Property

Environment

Product Progress® Kendo UI® Grid for jQuery
Operating System All
Browser All
Browser Version All

Description

How can I make some of the Grid cells blink by changing their background color if one of its properties matches certain criteria?

Solution

  1. Use the Kendo UI templates to check if a Boolean property is set to true and assign HTML classes to the relevant elements.
  2. Subscribe to the dataBound event to manipulate the colors at the desired time intervals.
<script src="https://demos.telerik.com/kendo-ui/content/shared/js/products.js"></script>

<div id="example">
  <div id="grid"></div>

  <script>
    $(document).ready(function() {
      $("#grid").kendoGrid({
        dataSource: {
          data: products,
          schema: {
            model: {
              fields: {
                ProductName: {
                  type: "string"
                },
                UnitPrice: {
                  type: "number"
                },
                UnitsInStock: {
                  type: "number"
                },
                Discontinued: {
                  type: "boolean"
                }
              }
            }
          },
          pageSize: 20
        },
        height: 550,
        scrollable: true,
        sortable: true,
        filterable: true,
        pageable: {
          input: true,
          numeric: false
        },
        columns: [{
            field: "ProductName",
            template: "# if (!Discontinued) { # #=ProductName# # } else {# <span class='highlight'> #=ProductName# </span> #}#"
          },
          {
            field: "UnitPrice",
            title: "Unit Price",
            format: "{0:c}",
            width: "130px"
          },
          {
            field: "UnitsInStock",
            title: "Units In Stock",
            width: "130px"
          },
          {
            field: "Discontinued",
            width: "130px",
            hidden: true
          }
        ],
        dataBound: function() {
          $(".highlight").parents('td').css("background-color", "yellow");

          setTimeout(function() {
            $(".highlight").parents('td').css("background-color", "");
          }, 3000);

          //re-reading the datasource to check how the flashing would look like
          setTimeout(function() {
            $("#grid").data("kendoGrid").dataSource.read();
          }, 5000);
        }
      });
    });
  </script>

See Also

In this article