Search and column have different date format

In search and input form, my date format is dd/mm/yyyy, but when it showed in column, it became m/d/yyyy. How to make it so the format is the same ?

i used this for date input :

$crud->fieldType('tanggal', 'native_date');

I can create callbackColumn function to make column format dd/mm/yyyy, but the datepicker from search box will be gone.

Hello @heruprambadi ,

Unfortunately with native_date we can’t do much. You can bypass this with callbackColumn and fieldTypeSearchColumn (available for version 3.1.8 or later) for more you can also see an example here: fieldTypeSearchColumn - Grocery CRUD - A PHP CRUD Generator Library

Regards
Johnny