Search
915 results 251-260
Forum
- 26th Mar 2012How to add icon in columnslooking like this: [code] "fnRowCallback": function( nRow, aData, iDisplayIndex,
- 26th Mar 2012Problem with ColVisissue is in your fnRowCallback function here: [code] var
- 12th Mar 2012Hide a column but still use get its contents?I've got a temp fix: "fnRowCallback": function( nRow, aData, iDisplayIndex ) { $.post( "get_editable_status.php", { vendor_item_id: aData[0], qty: quantity}, function(data){ $(nRow).attr('data-can_edit',data.can_edit ); //can_edit } ); which works.. but not the cleanest of ways, any alternatives?
- 7th Mar 2012error while using fnAddDataGET", "bRetrieve": true, "sAjaxDataProp": "", "fnRowCallback": function( nRow, aData, iDisplayIndex,
- 1st Mar 2012Script Error while loading long size dataGET", "bRetrieve": true, "sAjaxDataProp": "", "fnRowCallback": function( nRow, aData, iDisplayIndex,
- 29th Feb 2012using datatables with jquery ui dialogbVisible": 0 }, { "bVisible": 0 } ], "fnRowCallback": function( nRow, aData, iDisplayIndex
- 25th Feb 2012Ajax datasource and and single row selectOdd - I don't see any reason why that code wouldn't work. Here is an example of it working: http://live.datatables.net/afiwax/edit Normally I would recommend not using event handlers in fnRowCallback as it won't scale very well. Allan
- 15th Feb 2012How do I control the css on the "Last" button of pagination?My initialization: [code] $('#datatable').dataTable( { "bProcessing": true, "bJQueryUI": true, "sAjaxSource": 'lib/fullSearchQuery.pl', "sPaginationType": "full_numbers", "fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) { if ( aData[8] == "statusOption" ) { $(nRow).addClass( 'zero' ); } return nRow; } }); }); [/code] To Alan's original response; should we be adding CSS classes for the disabled states?
- 15th Feb 2012fnDraw forgetting clickable icon state...to the 'expand' state - fnRowCallback is called whenever a
- 10th Feb 2012Custom XHTML Attributes on the TD levelthe following: [code] $('#example').dataTable({ ... "fnRowCallback": function( nRow, aData, iDisplayIndex