Date and time in Radzen

Greetings community,

For my application, I would like to add a time and date. Especially in realtime for my time zone. I am not really familliar with coding and I am fairly new with Radzen. Can someone help me out? An example is given in the picture below.

image

Thanks in advance!

Hello @ChrisI!

In C# to get the machine current Date and Time:

using System;
var now = DateTime.Now;

Since you're new to coding, I highly recommend checking out the Microsoft documentation too.

1 Like

Hello @kim,

Thanks for you response. I am definitely going to check out the MS documentation. I assume that those lines of code are for Visual Studio. Can I also insert this code in a component from Radzen?

Looking forward to hearing from you!

Yes, Radzen uses the Blazor Framework and thus C#. Here's an example in Radzen:



image

For tips on the RadzenDatePicker and some more usages, check the Radzen examples.

1 Like

@kim,

Thanks! This is working. However the time is static and doesn't update each second. How do I make this time realtime?

Thanks for helping!

Use a Timer object.

1 Like