JSFiddle - React, Tailwind, and code Playground

by Kalu Singh Rao

JavaScript

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CustomerOrder.aspx.cs" 
     MasterPageFile="~/Administrator/BackEndMaster.master" Inherits="Administrator_CustomerOrder" %>
<asp:Content ID="Content1" ContentPlaceHolderID="cpHeader" runat="Server">
    <script type="text/javascript">
        $(document).ready(function () {
        //    // Setup - add a text input to each footer cell
        //    $('#AspGrid thead th').each(function () {
               
        //        var title = $(this).text();
        //        $(this).html(title + '<input type="text" placeholder="Search ' + title + '" />');
        //    });
           
        //    // DataTable
        //    var table = $('#AspGrid').DataTable();

        //    // Apply the search
        //    table.columns().every(function () {
        //        var that = this;

        //        $('input', this.header()).on('keyup change', function () {
        //            if (that.search() !== this.value) {
        //                that
        //                    .search(this.value)
        //                    .draw();
        //            }
        //        });
        //    });
        });

        //$(document).ready(function () {
        //    $('#AspGrid').DataTable({
        //        // 'bSort': false,
        //        "columnDefs": [
        //            //{
        //            //    // The `data` parameter refers to the data for the cell (defined by the
        //            //    // `data` option, which defaults to the column being worked with, in
        //            //    // this case `data: 0`.
        //            //    "render": function (data, type, row) {
        //            //        return data + ' (' + row[1] + ')';
        //            //    },
        //            //    "targets": 0
        //            //},
        //        //{ "visible": false, "targets": [1] }
        //        ],
        //        // "scrollY": "250px",
        //        //"scrollCollapse":...