jquery - How to make chrome respect tables with fixed column width -
i have basic home made "table" plug in supports scrolling horizontally , vertically column widths fixed while rendering. use css
table-layout:fixed; but problem chrome seems think though table width calculated , column widths calculated, should still reformat table.
fiddle here: http://jsfiddle.net/paull3876/ssr33/
if run in ie or firefox ok, data , column headers correctly truncated, in chrome, wants show data, ignores overflow:hidden , set widths , result columns not line between header , body tables.
so, ideas on how make work in chrome appreciated.. thank you
im still trying make chrome truncate, if dont mind row height wrap text using workaround:
$("td",$(".datatable")).css({"white-space":"normal"});
Comments
Post a Comment