Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

This API returns a drag-and-drop proxy element for a styled button based on a set of default styled button properties.  It should be used on the proxyHTML configuration option of the pui.toolbox.add() API.

Parameter:

  • defaults object - list of default properties for the styled button; the defaults object is automatically provided by the pui.toolbox.add() API so it can be used with the proxyHTML configuration option

Example:

pui.toolbox.add({
  category: "Custom Widgets",
  widget: "styled button",
  text: "Custom Styled Button",
  icon: "/profoundui/proddata/images/buttons/Custom Button/icon.png",

  proxyHeight: 23,
  proxyWidth: 125,
  proxyHTML: function(defaults) {
    return pui.widgets.getStyledButtonProxy(defaults);
  },

  defaults: {
    "button style": "Custom Button",
    "width": "125px",
    "color": "#000000"
  }
});
  • No labels