- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-23-2017 05:27 AM
Hi,
I'm trying to use this widget : "Data table from instance definition" on Service Portal.
But I would like to limit the number of rows par page that are displayed...
How to do that?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-18-2017 03:23 AM
Hi,
Istanbul too.
I believe that widget "Data Table" don't take into account option "window_size" when it is embedded into an other widget.
I solved the problem by creating a clone of Data Table widget and add "window_size" into the copy (row 23) :
// copy to data[name] from input[name] || option[name]
optCopy(['table', 'p', 'o', 'd', 'filter', 'filterACLs', 'fields', 'keywords', 'view', 'window_size']);
optCopy(['relationship_id', 'apply_to', 'apply_to_sys_id']);
It works for me.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-18-2017 03:23 AM
Hi,
Istanbul too.
I believe that widget "Data Table" don't take into account option "window_size" when it is embedded into an other widget.
I solved the problem by creating a clone of Data Table widget and add "window_size" into the copy (row 23) :
// copy to data[name] from input[name] || option[name]
optCopy(['table', 'p', 'o', 'd', 'filter', 'filterACLs', 'fields', 'keywords', 'view', 'window_size']);
optCopy(['relationship_id', 'apply_to', 'apply_to_sys_id']);
It works for me.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-01-2018 07:31 AM
Same for me.
I had to clone the widget and then modify the server script, line 23, to add 'window_size' to the parameters.