Note | ||
---|---|---|
| ||
As of July 25th, 2023, there is a content freeze on this page. |
This function adds a custom designer property. The property is typically assigned to a specific widget. Both new and existing widgets will already have standard properties relating to css attributes, JavaScript events, etc. This function can add additional custom properties.
...
Code Block | ||||
---|---|---|---|---|
| ||||
pui.addCustomProperty({
name: "google maps address",
type: "long",
help: "Specifies the full address to be mapped within Google Maps.",
controls: ["google maps"],
category: "Field Settings"
});
|
...