mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
Always send app:id or just id from nextmatch_entryheader, instead of seperated properties
This commit is contained in:
parent
e6cfe7a505
commit
d361206090
@ -1911,6 +1911,19 @@ var et2_nextmatch_entryheader = et2_link_entry.extend(et2_INextmatchHeader, {
|
||||
this.nextmatch.applyFilters();
|
||||
},
|
||||
|
||||
/**
|
||||
* Override to always return a string appname:id (or just id), parent returns an object
|
||||
*/
|
||||
getValue: function() {
|
||||
var value = this._super.apply(this, arguments);
|
||||
if(typeof value == "object" && value != null)
|
||||
{
|
||||
if(!value.app || !value.id) return null;
|
||||
value = value.app +":"+value.id;
|
||||
}
|
||||
return value
|
||||
},
|
||||
|
||||
/**
|
||||
* Set nextmatch is the function which has to be implemented for the
|
||||
* et2_INextmatchHeader interface.
|
||||
@ -1925,7 +1938,7 @@ var et2_nextmatch_entryheader = et2_link_entry.extend(et2_INextmatchHeader, {
|
||||
|
||||
// Tell framework to ignore, or it will reset it to ''/empty when it does loadingFinished()
|
||||
this.attributes.value.ignore = true;
|
||||
this.attributes.select_options.ignore = true;
|
||||
//this.attributes.select_options.ignore = true;
|
||||
}
|
||||
var self = this;
|
||||
// Fire on lost focus, clear filter if user emptied box
|
||||
|
Loading…
Reference in New Issue
Block a user