mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
Don't try quite so hard to search for select options
It was finding & using ALL options if there was a namespace in the selectbox ID, but no options found.
This commit is contained in:
parent
05e80af654
commit
602c08556d
@ -885,7 +885,7 @@ var et2_selectbox = /** @class */ (function (_super) {
|
||||
// Try name like widget[$row]
|
||||
if (name_parts.length > 1 && (!content_options || content_options.length == 0)) {
|
||||
var pop_that = jQuery.extend([], name_parts);
|
||||
while (pop_that.length > 0 && (!content_options || content_options.length == 0)) {
|
||||
while (pop_that.length > 1 && (!content_options || content_options.length == 0)) {
|
||||
var last = pop_that.pop();
|
||||
content_options = widget.getArrayMgr('sel_options').getEntry(pop_that.join('['));
|
||||
// Double check, might have found a normal parent namespace ( eg subgrid in subgrid[selectbox] )
|
||||
|
@ -1180,7 +1180,7 @@ export class et2_selectbox extends et2_inputWidget
|
||||
if(name_parts.length > 1 && (!content_options || content_options.length == 0 ))
|
||||
{
|
||||
var pop_that = jQuery.extend([],name_parts);
|
||||
while(pop_that.length > 0 && (!content_options || content_options.length == 0))
|
||||
while(pop_that.length > 1 && (!content_options || content_options.length == 0))
|
||||
{
|
||||
var last = pop_that.pop();
|
||||
content_options = widget.getArrayMgr('sel_options').getEntry(pop_that.join('['));
|
||||
|
Loading…
Reference in New Issue
Block a user