mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
If initial rows has no rows, add an empty row placeholder.
This way add context menu items work without clicking search first.
This commit is contained in:
parent
6f2e068706
commit
99023a7812
@ -225,6 +225,11 @@ var et2_dataview_controller = Class.extend({
|
|||||||
|
|
||||||
// Don't try to insert the rows, grid will do that automatically
|
// Don't try to insert the rows, grid will do that automatically
|
||||||
}
|
}
|
||||||
|
if(idx == 0)
|
||||||
|
{
|
||||||
|
// No rows, start with an empty
|
||||||
|
this._emptyRow();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user