I am generating data from SQL Server and displaying it using a calendar. The data is updated according to time and date and changes in every few hours. A few rows of the sample data is below :
| Currency | Date & Time Updated | Rate |
| USD | 8:48:00 AM | 83.65 |
| Euro | 8:48:00 AM | 105.48 |
| USD | 12:30:00 PM | 84.65 |
| Euro | 12:30:00 PM | 100.48 |
When we click the calendar, the rates for that particular date is populated. How do I create tabs depending on the time that the rates have been updated in the database? i.e. For 12th June, 1 tab for rates updated at 15.04 and another one for rates at 16:04, as shown in the image below :

My code is as below :
Manpreet SinghPosted Jun 9, 2016, 6:15 PM