Search
23416 results 961-970
Forum
- 26th Jun 2013Resizing Table ColumnsHi Friends, Resolved for my case by changing few lines of ColReorderWithResize.js code starting from 869: [code] //scrollingTableHead = $(tableScroller)[0].childNodes[0].childNodes[0].childNodes[0]; scrollingTableHead = $(tableScroller)[0].childNodes[0].childNodes[0]; //Resize the columns if (moveLength != 0 && !scrollXEnabled){ $($(scrollingTableHead)[0].childNodes[visibleColumnIndex+1]).width(this.s.mouse.nextStartWidth - m } var cnode = $(scrollingTableHead).children()[0].childNodes[visibleColumnIndex]; $(cnode).width(this.s.mouse.startWidth + moveLength); [/code]
- 24th Jun 2013Deactivate sort function on columnsMy html looks like this < table id="myTable"> col1 col2 I dont want this column to be sortable data 1 data 1 script $('#myTable').dataTable(); How do I exclude the sort funcionality from specific columns ?
- 22nd Jun 2013Columns wrong alignment , table header and data improper alignmentbrowser to slight the columns differently, even although they
- 18th Jun 2013Fixed Columns - Themes and Dev versionthen there's no fixed columns at all In IE
- 12th Jun 2013bring the columns dynamically according to searchwill appear with 2 columns, i no need to
- 1st Jun 2013Sorting on hidden columnsI think this is a known issue in that particular 3rd party plug-in. It doesn't cope with hidden columns. It needs to translate from visible column index to column data index and isn't doing that: http://code.google.com/p/jquery-datatables-column-filter/issues/detail?id=88 . Allan
- 28th May 2013how to shrink the width between columns in the data tablesIf you want to be certain it won't go to a new line, you could use td { white-space: nowrap; } in your CSS. Otherwise the sWidth option might help or set a width on the column's HTML. Allan
- 25th May 2013Is there a way to allow user to select which columns are fixed? (FixedColumns plug-in)Currently no - you cannot dynamically change which columns are fixed. It needs to be done up front at initialisation time. Allan
- 22nd May 2013TableTools export choose columns to export AND visibleTo get only visible columns to be exported I changed code in function _fnGetDataTablesData Replaced condition if(aColumnsInc[i]) with if (dt.aoColumns[i].bVisible) in Header and Body parts. This might be usefull for others who like to export only visible columns.
- 21st May 2013Fixed Columns ThemedoDT.fnSettings().aoColumns.length, Line 83, fixed columns js file. It may