Posts by Tiago • 93 points
6 posts
-
0
votes0
answers98
viewsQ: Is it possible to select graphics card?
I am wanting to create a small web program where I need to select a video card. It is a software for displaying music on projector. As the PC will have two boards one will only show on projector.…
-
1
votes1
answer356
viewsA: dataTables aoColumnDefs mRender
I thank you all. Who is going through the same problem, see how was my solution. { "aTargets": [ 7 ], "bSortable": false, "mData": 0, "mData": 1, "mData": 2, "mRender": function ( data, type, val )…
javascriptanswered Tiago 93 -
1
votes1
answer356
viewsQ: dataTables aoColumnDefs mRender
What would be the right way to do this: var oTable1 = $('#tabela-agenda').dataTable({ "bProcessing": true, "bServerSide": true, "sAjaxSource": "cadastroCarregaRegistros.php", aoColumnDefs: [ {…
javascriptasked Tiago 93 -
6
votes1
answer3845
viewsQ: Slow datatables
I have a database of 5,985 records. I am using dataTables, but it takes a long time to load. It is possible to improve this load? See my code: <div class="row"> <div class="col-xs-12">…
-
-3
votes1
answer236
viewsQ: Search between dates using two columns
What is wrong? SELECT ID_Contrato_Reserva, DATE_FORMAT(STR_TO_DATE(data_ini,"%d/%m/%Y" ), "%Y/%m/%d") AS dataIni, DATE_FORMAT(STR_TO_DATE(data_Fim,"%d/%m/%Y" ), "%Y/%m/%d") AS dataFim FROM…
-
-1
votes2
answers919
viewsQ: Separate time and search between dd/mm/yyyy dates
I have a contract table called contract two-column data_ini and data_fim. data_ini and data_fim are as follows: 20/04/2014 10:46 I need to do a search between dates, without the time. If I didn’t…