0

is there any list of the valid values for the Ext.Widget "ui" config option available? https://docs.sencha.com/extjs/7.4.0/modern/Ext.Widget.html#cfg-ui

I know, some of them are 'alt', 'raised', 'solo', but the documentation does not provide any of them.

Searched within the docs/examples without success.

CSM MX
  • 11
  • 2

1 Answers1

0

These ui configuration values are specific to the different widget classes, so you need to look for them elsewhere, not in the generic Ext.Widget class.

For example to get the possibilities for buttons:

  1. Head to Ext-Button in the documentation.

  2. Enter "ui" into the Filter members... editbox in the top right cornet.

  3. Click on theme variables above to check the possibilities (action, alt, confirm, decline, flat, plain, raised, round, segmented, square).

Also check theme mixins for variations.

Peter Koltai
  • 8,296
  • 2
  • 10
  • 20