mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-22 13:58:40 +01:00
Make sure column exists before trying to access its widget
This commit is contained in:
parent
a2aa644124
commit
8c161056b5
@ -640,7 +640,7 @@ var et2_nextmatch = et2_DOMWidget.extend(et2_IResizeable, {
|
|||||||
visibility[value[i]].visible = true;
|
visibility[value[i]].visible = true;
|
||||||
}
|
}
|
||||||
// Custom fields are listed seperately in column list, but are only 1 column
|
// Custom fields are listed seperately in column list, but are only 1 column
|
||||||
if(self.columns[column].widget.instanceOf(et2_nextmatch_customfields)) {
|
if(self.columns[column] && self.columns[column].widget.instanceOf(et2_nextmatch_customfields)) {
|
||||||
var cf = self.columns[column].widget.options.customfields;
|
var cf = self.columns[column].widget.options.customfields;
|
||||||
var visible = self.columns[column].widget.options.fields;
|
var visible = self.columns[column].widget.options.fields;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user