Categories | Question details Back To List | ||
to show date in like 2009-12-23 to 23 dec Hello, i wnat to disply date in 23 dec like but when i double click the cell or f2 the key then calndar must be open and i select the date and that date must be going to database but only for showing date it will like 23 dec. is it possible in dhtmlxgrid waiting for reply regards seema Answer posted by Alex (support) on Dec 23, 2009 06:14 Hello, You can try to use the following approach: grid.setDateFormat("%d %b","%m/%d/%Y"); Here %m/%d/%Y is format of incoming date. it means the the xml should contain the next value: <cell>12/23/2009</cell> in grid you will see 23 Dec |