Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
731
ultrawebgrid date Problem
posted

1) i want to load only date in cell when i load date column from database instead of time.

2) when i try to get those date values in javascript from cell  i want to get only date with same formate it shows me something like

 tue feb 10:00:00 utc + 500...

but i want dd/mm/yyyy as it is shown in cell...

Parents
No Data
Reply
  • 280
    posted

    You may have to do the format conversion yourself in javascript.

    var today = new Date();

    var formattedValue = today.getDay() + '/' + today.getMonth() + '/' + today.getFullYear();

Children