I have jqGrid 4.15.3. I am using filterToolbar for search in columns. I have column with date, which comes in following format "/Date(1515401700270)/". The compare parameters are eq,ge. The problem is that ge is working properly, but when searching with equal with existing value in the grid, it does not display anything. Do you have any ideas how to resolve this ? Is this connected with srcFormat of the model ?
Value: /Date(1515401700270)/ -> does not work
Value: 2017-01-02 -> work
The column model which I am using is:
{ "search" : "true", "label" : "DateCreated", "name": "DateCreated", "width" : 140, "sorttype": "date", "formatter" : "date", "formatoptions" : { "newformat" : "d.m.Y" },
"searchoptions" : { "clearSearch" : "false", "sopt": ["eq","ge"], "dataInit" : "(function(el) { $(el).datepicker( { firstDay: 1, dateFormat: 'dd.mm.yy' } ); }) " } }]