I have a Kendo React Grid to display data that I am fetching from a Sharepoint List. It is a simple grid as shown in this link - https://www.telerik.com/kendo-react-ui/components/grid/get-started/
<Column field="StartDate" title="Start Date" width="200px" format="{0:MMM yyyy}" />
<Column field="EndDate" title="End Date" width="200px" format="{0:MMM yyyy}" />
Right now the date is in ISO format like this-2014-08-14T15:30:10Z
How can I convert to mm/dd/yyyy format? The above value for format property doesn't seem to be working.