| Issue 2130: | Header rows and columns were rendered twice | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Invalid
|
|
| ► Sign in to add a comment |