git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C57
This commit is contained in:
parent
2dbca97c08
commit
9eca76e1c6
4 changed files with 23 additions and 8 deletions
|
|
@ -7713,6 +7713,7 @@
|
||||||
<Content Include="Views\Catalogos\Rol.cshtml" />
|
<Content Include="Views\Catalogos\Rol.cshtml" />
|
||||||
<Content Include="Views\PropuestaNormativa\Index.cshtml" />
|
<Content Include="Views\PropuestaNormativa\Index.cshtml" />
|
||||||
<Content Include="Views\PropuestaNormativa\Foro.cshtml" />
|
<Content Include="Views\PropuestaNormativa\Foro.cshtml" />
|
||||||
|
<Content Include="Views\PropuestaNormativa\DetallePropuesta.cshtml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="App_Data\" />
|
<Folder Include="App_Data\" />
|
||||||
|
|
|
||||||
|
|
@ -251,6 +251,7 @@ this.CargarTablaPantallas = function (data) {
|
||||||
item.IdPantalla,
|
item.IdPantalla,
|
||||||
item.Pantallas.Descripcion,
|
item.Pantallas.Descripcion,
|
||||||
checkbox]).draw();
|
checkbox]).draw();
|
||||||
|
TableItems.column(0).visible(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
ENDREQUEST();
|
ENDREQUEST();
|
||||||
|
|
@ -272,13 +273,14 @@ this.GuardarRolesPantallas = function () {
|
||||||
$.each(data, function (key, item) {
|
$.each(data, function (key, item) {
|
||||||
|
|
||||||
|
|
||||||
var cheched = $("#chkSeleccionar_" + item[0]).prop("checked") ? true : false
|
var cheched = $("#chkSeleccionar_" + item[1]).prop("checked") ? true : false
|
||||||
|
|
||||||
|
|
||||||
RolesPantallas = {
|
RolesPantallas = {
|
||||||
IdRolesPantallas:IdRolesPantallas,
|
|
||||||
|
IdRolesPantallas :item[0],
|
||||||
IdRol: IdRoles,
|
IdRol: IdRoles,
|
||||||
IdPantalla: item[0],
|
IdPantalla: item[1],
|
||||||
Estado: cheched
|
Estado: cheched
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -298,7 +300,7 @@ this.GuardarRolesPantallas = function () {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.AbrirRolesUsuario = function (id) {
|
//this.AbrirRolesUsuario = function (id) {
|
||||||
$("#modalRolesUsuario").modal('show');
|
// $("#modalRolesUsuario").modal('show');
|
||||||
|
|
||||||
}
|
//}
|
||||||
|
|
@ -67,8 +67,13 @@
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
|
|
||||||
@*Descripción*@
|
@*Descripción*@
|
||||||
|
<div class="form-group">
|
||||||
<input type="text" class="form-control" id="txtDescripcion">
|
<label class="col-sm-4 control-label ControlsForms">Descripción</label>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<input type="text" id="txtDescripcion" name="txtDescripcion" class="form-control imput-xs" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-md-2"></label>
|
<label class="col-md-2"></label>
|
||||||
<div class="col-md-4 ">
|
<div class="col-md-4 ">
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
@{
|
||||||
|
ViewBag.Title = "DetallePropuesta";
|
||||||
|
}
|
||||||
|
|
||||||
|
<h2>DetallePropuesta</h2>
|
||||||
|
|
||||||
Loading…
Add table
Reference in a new issue