mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-08 23:19:04 +01:00
Use widget's getValue() instead of using val() on an attribute which might not exist
This commit is contained in:
parent
d44fed908c
commit
8a2eb38369
@ -1538,9 +1538,9 @@ var et2_nextmatch_accountfilterheader = et2_selectAccount.extend(et2_INextmatchH
|
||||
}
|
||||
if(typeof event.data.nextmatch.activeFilters.col_filter == 'undefined')
|
||||
event.data.nextmatch.activeFilters.col_filter = {};
|
||||
if(event.data.input.val())
|
||||
if(event.data.getValue())
|
||||
{
|
||||
event.data.nextmatch.activeFilters["col_filter"][event.data.id] = event.data.input.val()
|
||||
event.data.nextmatch.activeFilters["col_filter"][event.data.id] = event.data.getValue();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user