"Agenda"
Bootstrap 3.2.0 Snippet by travislaynewilson

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<h2>Agenda</h2>
<p class="lead">
This agenda viewer will let you see multiple events cleanly!
</p>
<div class="alert alert-warning">
<h4>Mobile Support</h4>
<p>In order to get the lines between cells looking their best without any JavaScript, I had to use tables for this design. While this could be done in ".row", doing so will cause issues when displaying the vertical borders between cells, which is a compromise I wasn't willing to make this time.'</p>
</div>
<hr />
<div class="agenda">
<div class="table-responsive">
<table class="table table-condensed table-bordered">
<thead>
<tr>
<th>Date</th>
<th>Time</th>
<th>Event</th>
</tr>
</thead>
<tbody>
<!-- Single event in a single day -->
<tr>
<td class="agenda-date" class="active" rowspan="1">
<div class="dayofmonth">26</div>
<div class="dayofweek">Saturday</div>
<div class="shortdate text-muted">July, 2014</div>
</td>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.agenda { }
/* Dates */
.agenda .agenda-date { width: 170px; }
.agenda .agenda-date .dayofmonth {
width: 40px;
font-size: 36px;
line-height: 36px;
float: left;
text-align: right;
margin-right: 10px;
}
.agenda .agenda-date .shortdate {
font-size: 0.75em;
}
/* Times */
.agenda .agenda-time { width: 140px; }
/* Events */
.agenda .agenda-events { }
.agenda .agenda-events .agenda-event { }
@media (max-width: 767px) {
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

This is great!

Blake Billmaier () - 7 years ago - Reply 0


awesome design,, looks identical to Kendo UI Scheduler agenda view which is not clickable this solve a big problem!!
thanks

Costas Aletrari () - 10 years ago - Reply 0


Sweet jesus asshole what a nice plugin

Park Broom () - 10 years ago - Reply 0