Posts by Maik Vinicius • 46 points
3 posts
-
2
votes3
answers608
viewsA: Custom Filtering - Range Search - Datatables
To make it easier you can use Moment.js: https://momentjs.com/ $.fn.dataTable.ext.search.push( function( settings, data, dataIndex ) { const inicio = moment("01/10/2019","DD/MM/YYYY"); const fim =…
-
0
votes1
answer141
viewsA: Automatically scroll down an android layout after click event
Enter an id on ScrollView, and right after create an "event" post. When you do the action click on LinearLayout perform the event, as in the example below: mScrollView.post(new Runnable() { public…
android-xmlanswered Maik Vinicius 46 -
1
votes1
answer835
viewsA: Write txt file in PHP
The code is correct, but you must pass the PATH of the file, you power the PHP server $_SERVER['DOCUMENT_ROOT']. Example: $local = $_SERVER['DOCUMENT_ROOT'].'/pasta/configEstoque.txt'; $arquivo =…
phpanswered Maik Vinicius 46