Issue 2130: Header rows and columns were rendered twice
Status:  Invalid
Owner: ----
Closed:  Jun 2014
Reported by jiyan...@live.de, Apr 6, 2014
Hello,

i just found a bug and it seems to just happen to me or to my constellation of jQuery Plugins and Code.

I just can describe the Problem with word because i can't reproduce it with JSFiddle.

The Header.render and Header.renderSection functions returned both at every call an array with two elements. So I had two header Rows with six columns (left, center and right twice). 

My solution was to add an "[0]" to every return variable.

So at line 756 (function Header.render) I changed this :
return element;
to this :
return element[0];

The same at line 847 (function Header.renderSection) from :
return e;
to : 
return e[0];

Hope it helps someone.

~Jiyan

Jun 7, 2014
Project Member #1 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Invalid