mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-04-03 22:01:56 +02:00
handle multiple comma-separated category-ids in class attribute of row and do not match numbers inside class-names
This commit is contained in:
parent
8fafb1414a
commit
50c8dd1c07
@ -439,18 +439,10 @@ var et2_nextmatch_rowProvider = Class.extend({
|
|||||||
var category_location = _data["class"].match(/(cat(_id|egory)?)/);
|
var category_location = _data["class"].match(/(cat(_id|egory)?)/);
|
||||||
if(category_location) category_location = category_location[0];
|
if(category_location) category_location = category_location[0];
|
||||||
|
|
||||||
// Get actual category
|
// Get actual categories, eg. "cat_15" or "123,456,789", make sure to not match numbers inside other class-names
|
||||||
cats = classes.match(/(cat_)?([0-9]+)/);
|
cats = classes.match(/(^| |,|cat_)?([0-9]+)( |,|$)/g);
|
||||||
if(cats == null)
|
if (!cats) cats = [];
|
||||||
{
|
classes = classes.replace(/(^| |,|cat_)?([0-9]+)( |,|$)/g, '');
|
||||||
cats = '';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
var invalid = typeof cats[1] == 'undefined';
|
|
||||||
if(invalid) this._rootWidget.egw().debug("warn", "Invalid class '%s', prefixed with 'cat_'",cats[0]);
|
|
||||||
cats = [cats[2]];
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get category info
|
// Get category info
|
||||||
if(!this.categories)
|
if(!this.categories)
|
||||||
@ -467,21 +459,20 @@ var et2_nextmatch_rowProvider = Class.extend({
|
|||||||
for(var i = 0; i < cats.length; i++)
|
for(var i = 0; i < cats.length; i++)
|
||||||
{
|
{
|
||||||
// Need cat_, classes can't start with a number
|
// Need cat_, classes can't start with a number
|
||||||
var cat_class = 'cat_'+cats[i];
|
var cat_id = cats[i];
|
||||||
|
cat_id = cat_id.replace(/[^0-9]/, '');
|
||||||
|
var cat_class = 'cat_'+cat_id;
|
||||||
|
|
||||||
// Check for existing class
|
// Check for existing class
|
||||||
// TODO
|
// TODO
|
||||||
|
|
||||||
// Create class
|
// Create class
|
||||||
if(this.categories)
|
if(this.categories && this.categories[cat_id] && this.categories[cat_id].color)
|
||||||
{
|
{
|
||||||
if(this.categories[cats[i]] && this.categories[cats[i]].color)
|
var cat = this.categories[cat_id];
|
||||||
{
|
this._rootWidget.egw().css('.'+cat_class, "background-color: " + cat.color + ";");
|
||||||
var cat = this.categories[cats[i]];
|
classes += ' '+cat_class;
|
||||||
this._rootWidget.egw().css('.'+cat_class, "background-color: " + cat.color + ";");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if(invalid) classes = classes.replace(cats[i], cat_class);
|
|
||||||
}
|
}
|
||||||
classes += " row_category";
|
classes += " row_category";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user