mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 00:37:54 +02:00
Fixed code for auto-reducing the grid rows, removed debug messages
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user