This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('#dynamic-table').dataTable( { | |
| "aaSorting": [[ 0, "desc" ]], | |
| "oLanguage":{ | |
| "infoFiltered": "(filtered from _MAX_ total records)", | |
| "sProcessing": "Procesando...", | |
| "sLengthMenu": "Mostrar _MENU_ registros", | |
| "sZeroRecords": "No se encontraron resultados", | |
| "sEmptyTable": "Ning煤n dato disponible en esta tabla", | |
| "sInfo": "Mostrando registros del _START_ al _END_ de un total de _TOTAL_ registros", | |
| "sInfoEmpty": "Mostrando registros del 0 al 0 de un total de 0 registros", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Crear referencia al DataTable | |
| Tabla = $('#tblResultados').DataTable(); | |
| // Limpiar Tabla | |
| Tabla.fnClearTable(); | |
| // Agregar un row | |
| Tabla.fnAddData( [ | |
| '<span class="red">' + rivm + "</span>", | |
| identidad, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Public Shared Function Condiciones(ByRef NombresJuntos As String) As String | |
| Dim Condicion As String = "" | |
| Dim Variable As String = "" | |
| Dim Nombre As String = NombresJuntos | |
| Dim i As Integer | |
| Dim Contador As Integer = 0 | |
| NombresJuntos = NombresJuntos + " " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Class PNLinea | |
| Public periodo As String | |
| Public regimen As String | |
| Public causa As String | |
| Public identidad As String | |
| Public nombres As String | |
| Public area As String | |
| Public numepago As String | |
| Public montopagarmensual As String |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| // ====================================================== | |
| // Clase: class.Database.php | |
| // Funcion: Se encarga del manejo con la base de datos | |
| // Descripcion: Tiene varias funciones muy 煤tiles para | |
| // el manejo de registros. | |
| // | |
| // Ultima Modificaci贸n: 17 de marzo de 2015 | |
| // ====================================================== | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table class="display table table-bordered table-striped" id="tblDatos"> | |
| <thead> | |
| <tr> | |
| <th>Rendering engine</th> | |
| <th>Browser</th> | |
| <th>Platform(s)</th> | |
| <th class="hidden-phone">Engine version</th> | |
| <th class="hidden-phone">CSS grade</th> | |
| </tr> | |
| </thead> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ActionScript: source.actionscript.2 | |
| AppleScript: source.applescript | |
| ASP: source.asp | |
| Batch FIle: source.dosbatch | |
| C#: source.cs | |
| C++: source.c++ | |
| Clojure: source.clojure | |
| CoffeeScript: source.coffee | |
| CSS: source.css | |
| D: source.d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| session_start(); | |
| include '../../classes/class.Database.php'; | |
| include '../../classes/class.Deduccion.php'; | |
| echo $Data; | |
| $Deduccion = new Deduccion(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function OpenInNewTab(url) { | |
| var win = window.open(url, '_blank'); | |
| win.focus(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [merge] | |
| keepBackup = false | |
| tool = custom | |
| [mergetool "custom"] | |
| cmd = /Applications/p4merge.app/Contents/Resources/launchp4merge "$PWD/$BASE" "$PWD/$REMOTE" "$PWD/$LOCAL" "$PWD/$MERGED" | |
| keepTemporaries = false | |
| trustExitCode = false | |
| keepBackup = false |