Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
securityRemake
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Juan Guevara Mayta
securityRemake
Commits
a516109a
Commit
a516109a
authored
Dec 23, 2024
by
Sony Montoya Eslava
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT] Buscador de tipo de usuario - Mantenimiento Menu
parent
f34ce0dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
+4
-1
misc.xml
.idea/misc.xml
+2
-0
MantenimientoMenu.js
src/main/webapp/js/pages/MantenimientoMenu.js
+2
-1
No files found.
.idea/misc.xml
View file @
a516109a
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"ExternalStorageConfigurationManager"
enabled=
"true"
/>
<component
name=
"MavenProjectsManager"
>
...
...
@@ -6,6 +7,7 @@
<option
value=
"$PROJECT_DIR$/pom.xml"
/>
</list>
</option>
<option
name=
"workspaceImportForciblyTurnedOn"
value=
"true"
/>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_8"
project-jdk-name=
"corretto-1.8"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/out"
/>
...
...
src/main/webapp/js/pages/MantenimientoMenu.js
View file @
a516109a
...
...
@@ -58,12 +58,13 @@ let tipo_usuario_nombre = "";
dataType
:
'JSON'
,
data
:
json
,
success
:
function
(
result
)
{
var
print
=
" <option value=''>SELECCIONE TIPO DE USUARIO</option> "
;
var
print
=
" <option
selected disabled
value=''>SELECCIONE TIPO DE USUARIO</option> "
;
print
+=
" <option value='0' class='text-bold'>VISTA GENERAL</option> "
;
for
(
var
i
in
result
)
{
print
+=
" <option value ="
+
result
[
i
].
codigoDetalle
+
">"
+
result
[
i
].
nombreTipoUsuario
+
"</option> "
;
}
$
(
"#cboTipoUsuario"
).
html
(
print
);
$
(
"#cboTipoUsuario"
).
select2
();
}
});
});
...
...
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