Show Widget even when Empty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2017 11:25 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2017 11:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2017 11:54 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2017 12:15 PM
That only shows up for data table as Instance of Simple list.
All you need to do in your case is to clone the widget My Requests by use of button. Once done scroll down & change data table to Instacne of Simple list from Instance.
Then open the page in designer. Drag the cloned widget to the page remove the OOB one for My Requests & & then click on pencil icon & you will find the show even empty option available.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2018 01:28 PM
"Show even when empty" checkbox does NOT show up OOB/By Default/Automatically. We have to configure 'Widget Options schema' with a Boolean type variable and then use this variable in the angular template.
This is how you can configure Widget Options schema to get the checkbox "Show even when empty":
After saving the widget options schema you will get the checkbox "Show even when Empty". 🙂
Don't forget to use this variable in your html code: example -> ng-if="c.data.isValid && (c.options.always_show || c.data.filterText || c.data.list.length)">
Note: It works for Instance and Instance of simple list as well. Hope it helped! : )