mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
fix categories in admin sometimes change color after search
This commit is contained in:
parent
8239ae9b2d
commit
cc71329be0
@ -527,7 +527,22 @@ var et2_nextmatch_rowProvider = ClassWithAttributes.extend(
|
|||||||
if(!categories) categories = _mgrs["sel_options"].getEntry("${row}["+category_location + "]");
|
if(!categories) categories = _mgrs["sel_options"].getEntry("${row}["+category_location + "]");
|
||||||
|
|
||||||
// Cache
|
// Cache
|
||||||
if(categories) this.categories = categories;
|
if(categories)
|
||||||
|
{
|
||||||
|
if (!jQuery.isArray(categories))
|
||||||
|
{
|
||||||
|
this.categories = categories;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.categories = {};
|
||||||
|
for(var i=0; i < categories.length; ++i)
|
||||||
|
{
|
||||||
|
var cat = categories[i];
|
||||||
|
this.categories[cat.value] = cat;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for(var i = 0; i < cats.length && this.categories; i++)
|
for(var i = 0; i < cats.length && this.categories; i++)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user