HELP!

disableUI

This method disables the interaction with the Dialog user interface (in Dialog Deployment).

This is useful if you are making an asyncronous AJAX call (e.g. urlFetch) and want to prevent the user clicking on the dialog until the request is complete.

xpertrule.disableUI([cssProperties]);

cssProperties

holds an OPTIONAL object which contains a collection of css property/value pairs to apply to the disable "shim". Possible uses are making the shim fully transparent or placing a "working" image somewhere (via the background-image property. For more informeation, see the jQuery web site.

Disable the UI

xpertrule.disableUI();

To make the disable shim have a blue tint

xpertrule.disableUI(
  {
    "background-color": "rgba(0, 0, 255, 0.2)"
  }
);

n.b. You can style the disable shim by modifying the .xrui-uidisable-shim css class (in your custom css)

On This Page