Hi,
I have a field(create_date) in USER table.This stores default datetime(2015-07-01 03:05:34) value in the table as its value.
When I am displaying this value in front end it display as "01/07/2015 - 00:00". But I want to display date as "2015-07-01", To achieve this I used this code $crud->field_type('created_date', 'date') for formatting.So now it display as "01/07/2015".
So my question is how can I display this date as "2015-07-01".