mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #577] Custom Parameter Field Description #482
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#482
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Lv2hack on GitHub (Mar 27, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/577
I'm not sure if this is a question or a feature request. The issue I'm running into is that when I add custom fields with the WiFiManagerParameter function the field descriptions are not visible if the field is pre-populated with data. I've attached a screenshot that illustrates this. In these custom fields it's easy to see what the empty ones are looking for but in the one that's populated we're really at a loss as to what that is. To find out we'd have to delete all the contents and then understand that this is the Wunderground API key. I realize I could copy the existing library and then add my own HTML to the page but I'm wondering if there's any other way to get these field descriptions on the WiFi Manager page other than customizing the library itself?
Thanks for listening!
@Lv2hack commented on GitHub (Mar 27, 2018):
Found this in searching through the previous issues.
Example:
WiFiManagerParameter custom_mqtt_server("server", "mqtt server", "iot.eclipse", 40, " readonly");
WiFiManagerParameter custom_mqtt_port("port", "mqtt port", NULL, 5);
WiFiManagerParameter custom_text("
This is jsut a text paragraph
");WiFiManagerParameter custom_blynk_token("blynk", "blynk token", "sdfsfasdfdsfsdfa", 32);
wifiManager.addParameter(&custom_mqtt_server);
wifiManager.addParameter(&custom_mqtt_port);
wifiManager.addParameter(&custom_text);
wifiManager.addParameter(&custom_blynk_token);
@tablatronix commented on GitHub (Mar 27, 2018):
Development version removes placeholders in favor of labels