Search
43567 results 7321-7330
Forum
- 9th Apr 2012How to search data not display in tabletable_display id,name, add Values( 555,andy,12/dcc blah2..) data display (name , add )// i can search name & add how can i search id, id field dont display
- 3rd Apr 2012Transpose Child Table / Left Column-Right ValuesI recently stumbled across the forum addressing this issue (http://datatables.net/forums/discussion/5992/rotate-table/p1) but the link to the .zip file is invalid and my attempts so far have failed. Basically, my Parent/Child is really Parent/Parent-Details, therefore I have the need to tranpose the columns on the child so they appear on the left and their associated values on the right. Is there support for this and I am missing it? Has anyone else successfully accomplished this? Thanks, Jack
- 24th Mar 2012exporting a data table to exceldata is exporting to excel good when the header is plain. When we use column or row span, The header is not exporting
- 5th Mar 2012How to call a function on data table scroll down.........Hello Can any body tell me how to call a function on scroll down in Datatable ? Regard's Anurag
- 22nd Feb 2012Jquery data table hide delete buttonI am using $('#AffiliatedContractorLookup').dataTable().makeEditable I want to give user the ability to add a new record , so for that purpose I used, But this toolbar displays both Add and delete button. I want to hide the delete button. How can I acieve that ?
- 18th Feb 2012FixedHeader refreshes footer row after updating tableHi, I have problem with integration of individual column filters and FixedHeader. When I put filters in the footer, each time filter is changed values are lost in the text boxes, and it seems that a new footer is redrawn. See how it works on the http://jquery-datatables-column-filter.googlecode.com/svn/trunk/fixedHeader.html Filtering works fine. If you choose some value in select lists or type some characters in the text box, results will be filtered, but it seems that footer row is redrawn with original values. I think that this is caused by the fake TFOOT that is generated but it is strange because it works with infinite scrolling which also uses fake Footer see http://jquery-datatables-column-filter.googlecode.com/svn/trunk/ScrollInfinite.html Regards, Jovan
- 5th Feb 2012The fnServerData function is being called multiple times to load one table, Why?Everything works but I've noticed that it's making 8 trips to my php file for data even though the returned data is identical except for the sEcho parameter. The number 8 doesn't correspond to anything I can find. There are 11 columns and 30 rows. The definition looks like: [code] oTable = $('#example').dataTable( { "bServerSide": true, "sAjaxSource": 'getSortData.php', "bAutoWidth": false, "fnServerData": function ( sSource, aoData, fnCallback ) { // aoData.push( { "name": "more_data", "value": "my_value" } ); // this line will give additional data to the server... console.log("Load called",ncalls); ncalls++; $.postJSON( sSource, aoData, function (json) { /* Do whatever additional processing you want on the callback, then tell DataTables */ fnCallback(json) } ); } } ); oTable.fnSort( [ [0,'asc']] ); [/code] which I borrowed from some example somewhere. I'm just trying to improve the performance, if possible. There are a few other references to oTable in the js but I put console.log statements at each one and non of them are executed at document load time. Thanks, Jim.
- 30th Jan 2012Filtering - table statisticsDoes this forum use DataTables to display its content? I am interested in incorporating something like your "Categories" panel in a website I am developing. I'd like to show the numbers of items meeting various criteria i.e. price range, color, size, etc. . Ideally every time a criteria was selected, the dataset would be filtered based on that criteria, and the statistics of the query result would be displayed in the panel, allowing the user to drill-down or filter down to the info they are interested in viewing. Is this possible with DataTables? Thanks. --BillB1951
- 19th Jan 2012Getting Selected checkbox values when selected SelectAll checkbox in the table headerHi, In my dataTable which has 3 columns ( checkbox column, details, Name) . I've Selectall checkbox in the header of table1st column. When i SelectAll i need to get all the checked fields names (Column Name values).
- 18th Jan 2012Callback with no table headerHi all, my site has a formbuilder that users can build thair own form, and i'm saving it in json... So i don't know how many columns i have... i need to build the html header with the json result... My json looks like this: {"address":"xxxxxxxx","city":"xxxxxxxxxxxx","state":"xxxxxx","email":"xxx@xxx.com"} How can i do this??? thanks..