How to add attribute in TR and TD?

前端 未结 2 631
南笙
南笙 2020-12-09 15:19

I want to add row using data datatables, and I can do it like this

var table = $(\'#mytable\').DataTable();
table.add.row([\'first column\', \'second column\         


        
相关标签:
2条回答
  • 2020-12-09 15:40

    Use createdRow and columns.createdCell options to define a callback function that will be called when TR and TD element are created.

    $('#example').dataTable( {
      'createdRow': function( row, data, dataIndex ) {
          $(row).attr('id', 'someID');
      },
      'columnDefs': [
         {
            'targets': 3,
            'createdCell':  function (td, cellData, rowData, row, col) {
               $(td).attr('id', 'otherID'); 
            }
         }
      ]
    });
    

    See this example for code and demonstration.

    0 讨论(0)
  • 2020-12-09 15:55
    "fnRowCallback": function (nRow, aData) {
        var $nRow = $(nRow);
        $title = `Detalles de la Orden No. ${aData['noOrden']}`;
        $nRow.attr("title", $title);
    
        return nRow;
      },
    
    0 讨论(0)
提交回复
热议问题