DataTables 1.7 beta 6 released
DataTables 1.7 beta 6 released
allan
Posts: 63,488Questions: 1Answers: 10,468 Site admin
Hello all,
I'm really pleased to be able to release DataTables 1.7 beta 6. This release sees a number of bugs which have come to light in previous releasing being addressed, with an eye now on the 1.7.0 stable release.
Please continue beta testing, and letting me know of any issue you encounter. Baring any major upsets, the next release will be 1.7.0 :-)
As per usual:
Full release notes: http://datatables.net/download .
Download 1.7 beta 6 directly: http://datatables.net/releases/dataTables-1.7.beta.6.zip
Please donate to help keep DataTables supported in under active development: http://datatables.net/donate :-)
Regards,
Allan
I'm really pleased to be able to release DataTables 1.7 beta 6. This release sees a number of bugs which have come to light in previous releasing being addressed, with an eye now on the 1.7.0 stable release.
Please continue beta testing, and letting me know of any issue you encounter. Baring any major upsets, the next release will be 1.7.0 :-)
As per usual:
Full release notes: http://datatables.net/download .
Download 1.7 beta 6 directly: http://datatables.net/releases/dataTables-1.7.beta.6.zip
Please donate to help keep DataTables supported in under active development: http://datatables.net/donate :-)
Regards,
Allan
This discussion has been closed.
Replies
Is it possible to release a neat version with the minimized js file only?
If you download the above zip file, then unzip it and look in the media/js directory, you will see a minimised files, as well as a gzipped version. The minimised file is compiled using Google Closure.
Regards,
Allan
I meant that you provide that file only, so I don't need to download other resource files again but just grab the minimized js.
Regards,
Allan
nScrollHeadInner.style.width = ($(o.nTable).outerWidth()+o.iScrollWidth)+"px";
[/code]
I get an error on this line with invalid argument on IE7. any idea what's causing it? Have just upgraded to 1.7 beta 6.
[code]
nScrollHeadTable.style.width = $(o.nTable).outerWidth()+"px";
nScrollHeadInner.style.width = ($(o.nTable).outerWidth()+o.iScrollWidth)+"px";
[/code]
o.iScrollWidth is the key difference, but that should not be null (or NaN)! Are you able to put up an example of this occurring? That would be very useful - or indicate how I can modify one of my examples to cause it.
Regards,
Allan
Allan
[code]
nScrollHeadInner.style.width = ($(o.nTable).outerWidth()+o.iScrollWidth)+"px";
[/code]
If i comment it out, everything works as expected.
Regards,
Allan
you said that 1.7.0 version will be released this weekend. Till this version, I will sugest you improvment of current release. I ask you sorry for my speak english but I hope you understand me.
I sugest you to make horizontal scrolling comport like vertical scrolling.
When a row needs a greater height, it isn't taken from adjacent rows but grows sScrollYInner.
Just suggest you do same with horizontal scrolling. When a column requires a width greater than that fixed by sWith, width of columns adjacent to remain unchanged, but sScrollXInner be automatically increased value. And when that column width decreases, sScrollXInner be automatically reduced and eliminated
I will explain this by some suggestive images.
http://i.imgur.com/h6fkk.jpg
This is in current release (beta 6)
http://i.imgur.com/L7brO.jpg
Need sScrollXInner be automatically increased value
http://i.imgur.com/b9Uwp.jpg
I hope you understand me
Thanks and congratulations!
In addition to this, DataTables will tell you (using console.log - so you would need to be using a browser which supports this, or Firebug lite) if sScrollXInner is not big enough for the table to be correctly displayed and will likely result in misalignment of columns.
@kkudi: Did you have any luck with that example? It would be great to have this addressed in time for the 1.7.0 release.
Regards,
Allan
Of course this starts a whole new set of problems concerning resize. Basically the headers don't match the columns anymore:(
@kkudi: It would be really interesting if you could add:
[code]
alert( $(o.nTable).outerWidth() );
alert( o.iScrollWidth );
[/code]
just before the line:
[code]
nScrollHeadTable.style.width = $(o.nTable).outerWidth()+"px";
[/code]
and let me know what the output is please.
Regards,
Allan
oh and I have a silly workaround where I select each tab in code before calling datatables on it. Seems to work fine, but feels a bit ugly;)
Edit: actually this isn't quite right either... Try this:
[code]
$('#example').dataTable().fnAdjustColumnSizing();
$('#example').dataTable().fnDraw();
[/code]
If this does the job for you, I'll look at providing an automatic draw option for fnAdjustColumnSizing, which I think is the most sensible way forward.
Allan
I have a resizeable 100% width table so I have to call that on window Resize to. Kind of funny to see the columns jump around a bit, but at least it works now. It still goes wrong when I resize it to small ofcourse, but I doubt that is easy to fix and is a minor issue for me at the most.
Thanks and keep up the good work! :)
Oh and for some reason I'm not getting the error anymore even though I'm creating the tabs before turning the tables into datatables, can't figure out why.
I removed sScrollXInner and I obtained progress but not as I wish.
sScrollXInner doesn't increases that much so as the width of the nearby columns to remain unchanged in the desired page.
Back, in the previous page - that diplays horizontal scrolling wasn't necessary the xScroll bar remained displayed and the column width was increased.
I will explain this by some suggestive images.
This is initial page:
http://i.imgur.com/Ejzwj.jpg
and this are columns width:
http://i.imgur.com/hXZfU.jpg
This is the page where the width of a column must grow:
(you observe how width of adjacent columns changed)
http://i.imgur.com/V5nPS.jpg
http://i.imgur.com/CWTsX.jpg
And now this is the intial page, but where now width of columns is grew and Xscroll bar remains displayed;
http://i.imgur.com/pCQDe.jpg
http://i.imgur.com/GoyLL.jpg
EDIT:
This is initialize code:
[code]
"sScrollY": 253,
"sScrollX": "102%",
"bScrollCollapse": false,
"bAutoWidth": false,
"aoColumns": [
{ "sWidth": "100px"},
{ "sWidth": "100px"},
{ "sWidth": "100px"},
{ "sWidth": "100px"},
{ "sWidth": "100px"},
{ "sWidth": "100px"}
],
[/code]
Thanks!
I believe that this is due to the way the web-browser handles the tables. What DataTables does is to let the browser draw the table and then calculate the widths from what has been drawn. This is to try and keep the basic behaviour of what the browser is doing the same (so you get similar results). However, the browsers can be a bit funny about how the deal with tables which don't have exactly the right sizes applied (for example the content in your table must be way more than 100px, which has been assigned to it, so the browser tries to compensate. This is something I want to have a look at in future, but it's not a trivial thing to "fix" (since it might be considered to not be broken at the moment!).
Regards,
Allan
for:
[code]
alert( $(o.nTable).outerWidth() );
alert( o.iScrollWidth );
[/code]
I get 0 and -183 respectively in IE7.
In firefox, safari and opera I get 0 and -183, but it's called again and alerts with 870 and -183 respectively.
after the tabs have been created and loaded via synchronous ajax.
Allan
About resize columns.
Problem is that without the sScrollXInner property, the adjacent columns resized without need to have and the width of affected column doesn't increases that much as it is needed.
Ex:
http://i.imgur.com/V5nPS.jpg
And when come back in the intial page, now the width of columns is grew than initial width and Xscroll remains displayed.
Ex:
http://i.imgur.com/pCQDe.jpg
You know better If you can fix this anormal comportament before release 1.7.0 version.
Thanks!