mejoras en funciones
This commit is contained in:
parent
9f6e21645e
commit
6b690a4562
@ -5,6 +5,49 @@ date_default_timezone_set('America/Bogota');
|
||||
|
||||
use Firebase\JWT\JWT;
|
||||
|
||||
function aplicaciones_tabla($div,$tipo,$accion){
|
||||
|
||||
$link=conectarse();
|
||||
mysqli_query($link,"SET NAMES 'utf8'");
|
||||
$consulta = "SELECT * FROM form_id WHERE id_empresa= '$_SESSION[id_empresa]' ORDER BY nombre ASC ";
|
||||
$sql=mysqli_query($link,$consulta);
|
||||
if (mysqli_num_rows($sql)!='0'){
|
||||
$linea = "";
|
||||
$columna = 0;
|
||||
while( $row = mysqli_fetch_array( $sql ) ) {
|
||||
$tr .="";
|
||||
if($columna%2==0){ $c = 0;
|
||||
$td="<tr><td class='apliaciones_tabla_item'><a class='btn btn-link btn-sm' href='../milfs/?id=$row[id]' target='administrador'>[$row[id]]</a> <span data-toggle='tooltip' data-html='true' title='$row[descripcion]'>$row[nombre]</span></td>";
|
||||
|
||||
}else{ $c = 1;
|
||||
$td="<td class='apliaciones_tabla_item'><a class='btn btn-link btn-sm' href='../milfs/?id=$row[id]' target='administrador'>[$row[id]]</a> <span data-toggle='tooltip' data-html='true' title='$row[descripcion]'>$row[nombre]</span></td></tr>";
|
||||
}
|
||||
|
||||
//$linea .="<div class='col-md-6 apliaciones_tabla_item'> [$columna $c ] <a class='btn btn-link btn-sm' href='../milfs/?id=$row[id]' target='administrador'>[$row[id]]</a> <strong>$row[nombre]</strong> - $row[descripcion]</div>";
|
||||
$columna++;
|
||||
$tr .="$td";
|
||||
}
|
||||
$resultado = "
|
||||
<div class=' table-responsive container row' role='row' id='aplicaciones_tabla'>
|
||||
<table class='table table-condensed table-striped'>
|
||||
<thead></thead>
|
||||
<tbody>
|
||||
$tr
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
";
|
||||
}
|
||||
$respuesta = new xajaxResponse('UTF-8');
|
||||
$respuesta->addAssign("$div","innerHTML","$resultado");
|
||||
$respuesta->addScript("$(document).ready(function(){ $('[data-toggle=\"tooltip\"]').tooltip(); });");
|
||||
|
||||
return $respuesta;
|
||||
}
|
||||
$xajax->registerFunction("aplicaciones_tabla");
|
||||
|
||||
function vista_aplicacion($form){
|
||||
$plantilla="carousel";
|
||||
/// a=Aplicacion
|
||||
@ -7873,9 +7916,7 @@ function parametrizacion_linea($tabla,$campo,$opcion,$descripcion,$div,$script,$
|
||||
}
|
||||
$respuesta = new xajaxResponse('utf-8');
|
||||
if($tabla =="") {
|
||||
$resultado = "
|
||||
|
||||
";
|
||||
$resultado = "";
|
||||
return $resultado;
|
||||
}
|
||||
$link=Conectarse();
|
||||
@ -7910,7 +7951,7 @@ if($sql) {
|
||||
$respuesta->addAssign("$div","innerHTML",$consulta);
|
||||
return $respuesta;
|
||||
}else {
|
||||
return $consulta;
|
||||
return;// $consulta;
|
||||
}
|
||||
//$respuesta->addAlert("$consulta");
|
||||
//return $consulta;
|
||||
|
@ -610,8 +610,6 @@ else if (document.all) document.all[''+id+''].style.visibility = "hidden"
|
||||
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
|
||||
}
|
||||
}
|
||||
/*
|
||||
$(function () {
|
||||
$('[data-toggle="tooltip"]').tooltip()
|
||||
}) ;
|
||||
* */
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user