Portfolio - Components
View All Components
Component: Datatable
Features:
- Display sortable and searchable data in responsive table
Notes:
- see datatables.net
- use
<table class="display"for table class. Maintain exact table structure as per WYSIWYG source
Watch Short Video
Datatable
| Name | Position | Office | Age | Start date | Salary |
|---|---|---|---|---|---|
| Tiger Nixon | System Architect | Edinburgh | 61 | 2011-04-25 | $320,800 |
| Garrett Winters | Accountant | Tokyo | 63 | 2011-07-25 | $170,750 |
| fdsfd | sfds | fdsfd | 44 | fds | sfd |
paragraph--datatable.html.twig
{% block paragraph %}
<div class="row">
<div class="col-md-12">
{% block content %}
{{ content }}
{% endblock %}
</div>
</div>
{% endblock paragraph %}
field.html.twig
{% for item in items %}
{{ item.content }}
{% endfor %}