I have kendo grid which has an 'end_date' column. The date is coming from server and it was getting converted to local timezone. To fix this issue I have used this code
Server side:
DateTime time = DateTime.Now();
string end_date = time.ToString("MM/dd/yyyy");
client side:
columns.Bound(c => c.end_date).Format("{0:MM/dd/yyyy}").Filterable(ftb => ftb.Cell(cell => cell.ShowOperators(true))).Width(225);
But by using this approach , the end_date
column in becoming non-editable. How can I make it editable and filterable?