Hi, I'm using datatables for a simple "shop" style web app, I have Product, Price and 2 flow links for each row. I have a couple doubts:
1) Is there a way to make those last 2 flow columns adaptive to the content? If one link is longer than a certain amount it goes on two rows while there's a lot of free space in the other columns.
2) Is there a way to sort float columns? Right now the sort method looks like it sorts alphabetically and not by value, so for example if I have 9.0-65.0-87.0 the descending sort is 9-87-65 instead of 87.0-65.0-9.0. Integer sort works perfectly instead.
I hope I was clear enough.