mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Give a warning about blank first row and stop - not sure of the solution, but this at least shows something
This commit is contained in:
parent
e2a662289b
commit
e09a3fac51
@ -106,6 +106,11 @@ var et2_dataview_dataProvider = Class.extend(et2_IDataProvider, {
|
||||
// request immediately
|
||||
if (typeof this._data[_idx] != "undefined")
|
||||
{
|
||||
if (this._data[_idx].data == false)
|
||||
{
|
||||
egw().debug("warn", "App provides blank first row, which causes problems");
|
||||
return;
|
||||
}
|
||||
this._callUpdateData(_idx);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user