Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
3bfc9e65
"app/Http/vscode:/vscode.git/clone" did not exist on "e5f4a2fce33dae249088555cab8b178eb8048888"
Commit
3bfc9e65
authored
May 17, 2023
by
unknown
Browse files
Correção no filtro para editais que só possuem adHoc
parent
3e782b87
Changes
1
Hide whitespace changes
Inline
Side-by-side
resources/views/administrador/analisarProposta.blade.php
View file @
3bfc9e65
...
@@ -2275,21 +2275,23 @@
...
@@ -2275,21 +2275,23 @@
//console.log(seletor[0].children[0].text)=
//console.log(seletor[0].children[0].text)=
function
buscar
(
input
)
{
function
buscar
(
input
)
{
let
seletor1
=
document
.
getElementById
(
'exampleFormControlSelect2'
)
.
children
;
if
(
document
.
getElementById
(
'exampleFormControlSelect2'
)
!=
null
){
let
seletor2
=
document
.
getElementById
(
'exampleFormControlSelect3'
)
.
children
;
let
seletor1
=
document
.
getElementById
(
'exampleFormControlSelect2'
)
.
children
;
for
(
let
i
=
0
;
i
<
seletor1
.
length
;
i
++
){
for
(
let
i
=
0
;
i
<
seletor1
.
length
;
i
++
){
let
nomeAval1
=
seletor1
[
i
]
.
textContent
let
nomeAval1
=
seletor1
[
i
]
.
textContent
if
(
nomeAval1
.
toLowerCase
()
.
substr
(
0
)
.
indexOf
(
input
.
value
.
toLowerCase
())
>=
0
){
if
(
nomeAval1
.
toLowerCase
()
.
substr
(
0
)
.
indexOf
(
input
.
value
.
toLowerCase
())
>=
0
){
seletor1
[
i
]
.
style
.
display
=
""
;
seletor1
[
i
]
.
style
.
display
=
""
;
}
else
{
}
else
{
seletor1
[
i
]
.
style
.
display
=
"none"
;
seletor1
[
i
]
.
style
.
display
=
"none"
;
}
}
}
}
}
let
seletor2
=
document
.
getElementById
(
'exampleFormControlSelect3'
)
.
children
;
for
(
let
j
=
0
;
j
<
seletor2
.
length
;
j
++
){
for
(
let
j
=
0
;
j
<
seletor2
.
length
;
j
++
){
let
nomeAval1
=
seletor2
[
j
]
.
textContent
let
nomeAval1
=
seletor2
[
j
]
.
textContent
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment