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:
Nathan Gray 2012-03-13 15:42:46 +00:00
parent e2a662289b
commit e09a3fac51

View File

@ -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