Ticket T953570
Visible to All Users

DataGrid - How to display only the time part of dates

created 4 years ago

Hi,

we are using devextreme dataGrid in our angular project,
While working with dxDateBox editor for show time value,
The grid showing 'Time' value [ example: 10:35] when time column cell is in edit mode.
but, The grid showing 'date' [example: 11/30/2020] while loss the cell focus. of time column cell.

Please check the attached video, shown my problem at there.
datagrid_Transaction.mp4

please refer the following sample project.
stackblitz example

Answers approved by DevExpress Support

created 4 years ago

Hello Ajay,

For Date objects, DataGrid displays dates if nothing else is configured.
To display only the time part of your dates in cells, use the columns.format option. Set it to "HH:mm". For instance, you can use the customizeColumns function:

JavaScript
customizeColumns (columns) { columns.forEach((col) => { if(col.dataField === "Time") col.format = "HH:mm" }) }

Please let me know if you have additional questions.

Regards,
Romeo

    Comments (3)

      Hi Romeo,

      Thanks for your valuable reply, my problem is solved.

      DevExpress Support Team 4 years ago

        I'm happy to hear that you resolved the issue. Would you mind if I mark this ticket public so that other customers can find this solution?

          Hi Romeo,
          yes, you can make it as public.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.