We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
For example, the fields Port, and Baud Rate are not populated when type = Serial in the following example.
Port
Baud Rate
type
Serial
{ type: "Select", model: "type", label: "Communication", options: [ { label: "TCP", value: "TCP" }, { label: "Serial", value: "Serial" }, ] }, { type: "QuickForm", model: "link", showIf: { field: "type", is: "TCP" }, fields: [ { type: "Input", inputType: "text", model: "host", default: "192.168.50.4", label: "IP Address" }, { type: "Input", inputType: "number", model: "port", default: "9000", label: "Port Number" } ]}, { type: "QuickForm", model: "link", showIf: { field: "type", is: "Serial" }, fields: [ { type: "Input", inputType: "string", default: "/dev/ttyUSB0", model: "devPort", label: "Port" }, { type: "Input", inputType: "number", default: 115200, model: "baudRate", label: "Baud Rate" } ]}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example, the fields
Port
, andBaud Rate
are not populated whentype
=Serial
in the following example.The text was updated successfully, but these errors were encountered: