s00500 / ESPUI

A simple web user interface library for ESP32 and ESP8266

Home Page:https://valencia.lbsfilm.at/midterm-presentation/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Calling Callbacks via raw HTML

fiskn opened this issue · comments

commented

It would be handy if you could call a callback via the use of a direct html link

In my project I'm using ESPUI.print into a Label, to display a dynamically generated HTML table of nodes in a mesh network. I wish to be able trigger certain actions to each of the line items, like sending a restart command.

I was hoping there might be someway in the current code I could add a into one of the table cells and when clicked it would call a URL which would be passed through to a callback. Or even if you could inline some JS to call a callback via websockets.

Are you aware if there is anything in the current codebase I could manipulate to achieve this?

you should be able to get the actual Webserver out and register further handlers, very similar to how it is done here
#116