Last active
May 21, 2018 22:54
-
-
Save dbarkol/5e59cda3d00cb03f32b213d3240eaf91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table id="grid-events" class="table table-striped"> | |
| <thead> | |
| <th> </th> | |
| <th>Event Type</th> | |
| <th>Subject</th> | |
| </thead> | |
| <tbody id="grid-event-details"></tbody> | |
| </table> | |
| <script id="event-template" type="text/x-handlebars-template"> | |
| <tr data-toggle="collapse" data-target="#event-{{gridEventId}}" class="accordian-toggle"> | |
| <td> | |
| <button class="btn btn-primary btn-xs"> | |
| <span class="glyphicon glyphicon-eye-open"></span> | |
| </button> | |
| </td> | |
| <td>{{gridEventType}}</td> | |
| <td>{{gridEventSubject}}</td> | |
| </tr> | |
| <tr class="hiddenRow collapse" id="event-{{gridEventId}}"> | |
| <td colspan="12"> | |
| <div class="accordian-body"> | |
| <pre><code class="nohighlight">{{gridEvent}}</code></pre> | |
| </div> | |
| </td> | |
| </tr> | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment