I have a CallDate and a CallTime field and I want to display them both in the same column.
I have searched google and the documentation but I can't find an explanation of how to do this.
Please can you advise.
At the moment I have
.Columns(columns =>
{
columns.Bound(u => u.CallDate);
columns.Bount(u => u.CallTime);
}
I want a column called Call Date with both of these values joined together.