I have one issue related to jqgrid. I have date shown in jqgrid table like "FRI MAY 17 00:00:00 IST 2013" .I want to change its format to "17/5/2013".how i can do it?
{name:'checkin', index:'checkin', width:60, searchoptions:{sopt:['eq']}},
this is my code.
ISO8601Short
("Y-m-d" like "2013-05-18") orISO8601Long
("Y-m-d H:i:s" like "2013-05-18 14:13:53") – Windrowdatatype: "local"
and fill the data in your JavaScript code or you usedatatype: "json"
(or "xml") and returns data from the server? – Windrowdatatype: "json"
– Agriculturist