Example on how to integrate custom buttons in a datatable and add events to them.
A Pen by Martin Murciego on CodePen.
FROM php:7.1-fpm | |
LABEL maintainer="Paul Redmond <[email protected]>" | |
# Install application dependencies | |
RUN curl --silent --show-error --fail --location \ | |
--header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o - \ | |
"https://caddyserver.com/download/linux/amd64?plugins=http.expires,http.realip&license=personal" \ | |
| tar --no-same-owner -C /usr/bin/ -xz caddy \ | |
&& chmod 0755 /usr/bin/caddy \ | |
&& /usr/bin/caddy -version \ |
#!/bin/sh | |
# This script graceful reloads the Caddy server inside the docker container. Graceful means that caddy reloads its configuration with zero downtime. | |
# Warning: Only works on Linux | |
caddy_container_id=$(docker ps | grep caddy | awk '{print $1;}') | |
docker exec $caddy_container_id caddy reload --config /etc/caddy/Caddyfile --adapter caddyfile |
<div class="filler one"></div> | |
<nav id="navbar"> | |
<ul> | |
<li>One</li> | |
<li>Two</li> | |
<li>Three</li> | |
</ul> | |
</nav> | |
<div class="filler two"></div> |