[GH-ISSUE #577] Custom Parameter Field Description #482

Closed
opened 2026-02-28 01:25:31 +03:00 by kerem · 2 comments
Owner

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!

screenshot 2018-03-26 21 58 50
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! <img width="400" alt="screenshot 2018-03-26 21 58 50" src="https://user-images.githubusercontent.com/13168324/37942635-23dbdaaa-3142-11e8-9a24-48848086d8ef.png">
kerem closed this issue 2026-02-28 01:25:31 +03:00
Author
Owner

@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);

<!-- gh-comment-id:376379747 --> @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("<p>This is jsut a text paragraph</p>"); 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);
Author
Owner

@tablatronix commented on GitHub (Mar 27, 2018):

Development version removes placeholders in favor of labels

<!-- gh-comment-id:376491558 --> @tablatronix commented on GitHub (Mar 27, 2018): Development version removes placeholders in favor of labels
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/WiFiManager#482
No description provided.