Fixed code for auto-reducing the grid rows, removed debug messages

This commit is contained in:
Andreas Stöckel
2011-09-05 09:13:58 +00:00
parent 7ab7b51bc8
commit a13dfef19e
4 changed files with 11 additions and 18 deletions

View File

@ -31,7 +31,9 @@ var et2_dataview_row = et2_dataview_container.extend(et2_dataview_IDataRow, {
setIdx: function(_idx) {
this._idx = _idx;
$j("div:first", this.tr).text(_idx + ":");
$j("div:first", this.tr)
.text(_idx + ":")
.height((_idx % 10) * 10 + 20);
},
updateData: function(_data) {