fixed not shown select-columns icon, rather hackisch, but I could not find a solution via our css files

This commit is contained in:
Ralf Becker 2013-08-20 08:03:46 +00:00
parent 8b8faba28c
commit 155f771cc4

View File

@ -407,7 +407,8 @@ var et2_dataview = Class.extend({
_buildSelectCol: function() {
// Build the "select columns" icon
this.selectColIcon = $j(document.createElement("span"))
.addClass("selectcols");
.addClass("selectcols")
.css('display', 'inline-block'); // otherwise $j('span.selectcols',this.dataview.headTr).show() set it to "inline" causing it to not show up because 0 height
// Build the option column
this.selectCol = $j(document.createElement("th"))