** how would you add the start_time field in the same format that it shows up in the grid or list? **
The start and end times returned by the search function are 24 hour times not AM/PM type times. You'd have to do some fancy footwork to get them to display the same.
If 24 hour military time is sufficient for that display, they're easy enough to print out:
<%= $EVENT->{schedule}->{start_time} %>
<%= $EVENT->{schedule}->{end_time} %>
You'll have to modify the template code to add another table column (or whatever) to display them in and to title it.
Dan O.
------------------