JonL
January 20, 2022, 9:54pm
1
Wappler Version : 4.4.5
Operating System : MacOS Monterey
Expected behavior
Adding a defaultValue of true to an output should default the output to true when adding the action and allow further toggling to uncheck and check.
{ name: 'queryOutput', optionName: 'output', title: 'Output', type: 'boolean', defaultValue: true }
Actual behavior
If you use the defaultValue toggling the checkbox will not write changes to the json SC file.
How to reproduce
In a Hjson file for a custom extension default the output to true, add the action and try toggling the checkbox. The json SC file is unchanged.
1 Like
George
January 22, 2022, 10:22am
2
Well defaultValue just indicates what is the value that when entered the whole option should be omitted.
If you want to make the checkbox checked initially add:
initValue: true, defaultValue: false
1 Like
JonL
January 22, 2022, 10:26am
3
Thanks George. Worth updating the docs as I think it’s not there.
Wappler opens up its extensibility powers!
Now you can define your own custom modules and formatters for Server Connect. You can write your own custom code but also provide a UI definition of your extensions so they integrate directly visually in Wappler!
Writing Extensions for Server Connect
Folder Structure
All extensions files are placed in your project folder under the following folders:
for modules:
extensions/server_connect/modules
for formatters
extensions/server_connect/forma…
1 Like
Cheese
November 24, 2025, 9:39pm
4
Have been going around for ages trying to figure this out! No matter what I did (unless I hard-coded it) I could not get output! PLEASE acknowledge it in the Extension documentation @George
Cheese
November 24, 2025, 9:51pm
5
I see it is there but I think it needs to be BOLD as is a very important point.