Skip to content
GitLab
Erkunden
Anmelden
Registrieren
Primärnavigation
Suchen oder aufrufen …
Projekt
QUI
Verwalten
Aktivität
Mitglieder
Labels
Planen
Tickets
6
Ticketübersichten
Meilensteine
Wiki
Code
Merge Requests
0
Repository
Branch
Commits
Tags
Repository-Diagramm
Revisionen vergleichen
Code-Schnipsel
Build
Pipelines
Aufgaben
Pipeline-Zeitpläne
Artefakte
Bereitstellung
Releases
Betreiben
Umgebungen
Überwachen
Vorfälle
Service-Desk
Analysieren
Wertschöpfungskettenanalyse
Mitwirkenden-Analyse
CI/CD-Analyse
Repository-Analysen
Hilfe
Hilfe
Support
GitLab-Dokumentation
GitLab-Pläne vergleichen
Community-Forum
Zu GitLab beitragen
Feedback geben
Tastenkürzel
?
Code-Schnipsel
Gruppen
Projekte
Show more breadcrumbs
QUIQQER
QUI
Commits
50857bd7
Commit
50857bd7
erstellt
vor 7 Jahren
von
Henning Leutz
Dateien durchsuchen
Optionen
Downloads
Einfaches Diff
Merge branch 'dev' of dev.quiqqer.com:quiqqer/qui into dev
Übergeordnete
1f5816d1
35f6dd7d
No related branches found
Branches enthält Commit
No related tags found
Tags enthält Commit
Keine zugehörigen Merge Requests gefunden
Änderungen
2
Leerzeichenänderungen ausblenden
Inline
Nebeneinander
2 geänderte Dateien
qui/controls/elements/Select.js
+7
-3
7 Ergänzungen, 3 Löschungen
qui/controls/elements/Select.js
qui/controls/windows/Popup.js
+3
-3
3 Ergänzungen, 3 Löschungen
qui/controls/windows/Popup.js
werden angezeigt
mit
10 Ergänzungen
und
6 Löschungen
qui/controls/elements/Select.js
+
7
−
3
Zeige Datei @
50857bd7
...
...
@@ -68,7 +68,8 @@ define('qui/controls/elements/Select', [
icon
:
'
fa fa-angle-right
'
,
placeholder
:
'
Suche...
'
,
child
:
'
qui/controls/elements/SelectItem
'
,
// child type
showIds
:
true
// display the ids in the search result list or not
showIds
:
true
,
// display the ids in the search result list or not
asyncSearch
:
true
// search the results asynchronically (if set to false -> just add items without search)
},
initialize
:
function
(
options
,
Input
)
{
...
...
@@ -221,7 +222,7 @@ define('qui/controls/elements/Select', [
if
(
!
this
.
getAttribute
(
'
searchbutton
'
))
{
this
.
$SearchButton
.
setStyle
(
'
display
'
,
'
none
'
);
this
.
$Search
.
s
etS
tyle
(
'
width
'
,
'
100%
'
);
this
.
$Search
.
style
.
setProperty
(
'
width
'
,
'
100%
'
,
'
important
'
);
}
// load values
...
...
@@ -297,6 +298,10 @@ define('qui/controls/elements/Select', [
* @method qui/controls/elements/Select#fireSearch
*/
fireSearch
:
function
()
{
if
(
!
this
.
getAttribute
(
'
asyncSearch
'
))
{
return
;
}
if
(
this
.
$Search
.
value
===
''
)
{
return
this
.
close
();
}
...
...
@@ -596,7 +601,6 @@ define('qui/controls/elements/Select', [
this
.
addItem
(
Active
.
get
(
'
data-id
'
));
}
this
.
$Input
.
value
=
''
;
this
.
search
();
},
...
...
This diff is collapsed.
Zum Erweitern klicken.
qui/controls/windows/Popup.js
+
3
−
3
Zeige Datei @
50857bd7
...
...
@@ -106,10 +106,10 @@ define('qui/controls/windows/Popup', needle, function (QUI,
// button texts
var
closeText
=
'
Close
'
;
var
closeText
=
QUI
.
getAttribute
(
'
control-windows-popup-closetext
'
)
;
if
(
QUI
.
getAttribute
(
'
c
ontrol-windows-popup-closet
ext
'
))
{
closeText
=
QUI
.
getAttribute
(
'
c
ontrol-windows-popup-closet
ext
'
);
if
(
this
.
getAttribute
(
'
c
loseButtonT
ext
'
))
{
closeText
=
this
.
getAttribute
(
'
c
loseButtonT
ext
'
);
}
this
.
setAttribute
(
'
closeButtonText
'
,
closeText
);
...
...
This diff is collapsed.
Zum Erweitern klicken.
Vorschau
0%
Wiederholen
oder
Neue Datei anhängen
.
Abbrechen
You are about to add
0
people
to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Kommentar speichern
Abbrechen
Bitte
registrieren
oder
Anmelden
zum Kommentieren