Good Afternoon,
I'm trying to alter the default settings for the dialog box of a widget when it opens from the Widget Controller. Does anybody have an idea on where this can be done either in CSS or JavaScript?
Solved! Go to Solution.
@ChrisCarter3 It's in the config.json. Thanks for pointing me in the right direction.
This looks like a custom widget... for mine I found this to work.
Add an entry to the manifest.json like this:
"defaultSize": {
"width": 600,
"height": 200
}
Note that whenever you change the manifest.json, you will need to restart the client/server environments.
@ChrisCarter3 It's in the config.json. Thanks for pointing me in the right direction.