mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 21:01:30 +02:00
Check if content is there before trying to look inside it.
Fixes "TypeError: Cannot read property id of null" from mail dialog
This commit is contained in:
parent
7db4672b35
commit
19e2b49325
@ -926,8 +926,13 @@ var et2_grid = et2_DOMWidget.extend([et2_IDetachedDOM, et2_IAligned],
|
|||||||
// Add a new action object to the object manager
|
// Add a new action object to the object manager
|
||||||
var row = $j('tr', this.tbody)[i];
|
var row = $j('tr', this.tbody)[i];
|
||||||
var aoi = new et2_action_object_impl(this, row);
|
var aoi = new et2_action_object_impl(this, row);
|
||||||
|
var id = "row_"+i;
|
||||||
var content = this.getArrayMgr('content').getEntry(i);
|
var content = this.getArrayMgr('content').getEntry(i);
|
||||||
var obj = widget_object.addObject(content.id || "row_"+i, aoi);
|
if(content && content.id)
|
||||||
|
{
|
||||||
|
id = content.id;
|
||||||
|
}
|
||||||
|
var obj = widget_object.addObject(id, aoi);
|
||||||
|
|
||||||
// Set the data to the content so it's available for the action
|
// Set the data to the content so it's available for the action
|
||||||
if(content)
|
if(content)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user