Is it possible to display a subset indicator in a code studio widget?

Hi,

Does anyone have any advice about using a subset indicator in a code studio widget? It doesn’t seem to be available as a base_format.

Thanks,

Mark

Hi Mark,

To create a setting on widgets/presenters to consider a subset, you need to use the format of “subset”

	subset1: {
				main_label: "Show When In",
				csid: "subset_path_1",
				base_format: "subset"
			},

This will show itself like this in the settings panels.

image

You can then use the data from this setting in other functions such as:

record.in_subset(presenter.get_setting('subset1'))

Carl

1 Like

Great! Thanks Carl: widget working :slight_smile: