Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Merge requests
!528
B15420 type ahead prefetch triggers form changed
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
B15420 type ahead prefetch triggers form changed
B15420_TypeAhead_prefetch_triggers_formChanged
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
1
Merged
Pascal Rössler
requested to merge
B15420_TypeAhead_prefetch_triggers_formChanged
into
develop
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
1
Expand
B15420: removing .change() for prefetch to prevent unnecessary dialog window refs #15420
Edited
2 years ago
by
Pascal Rössler
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
87a7928e
2 commits,
2 years ago
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
javascript/src/TypeAhead.js
+
3
−
1
Options
@@ -316,7 +316,9 @@ var QfqNS = QfqNS || {};
var
$shadowElement
=
n
.
TypeAhead
.
getShadowElement
(
$typeAhead
);
if
(
$shadowElement
.
val
()
===
''
)
{
$typeAhead
.
typeahead
(
'
val
'
,
''
);
$typeAhead
.
closest
(
'
form
'
).
change
();
// This triggers after saving and causes unnecessary dialog window (do you really want to leave...)
//$typeAhead.closest('form').change();
}
};
};
Loading