Disable clickable link on 'Data table from instance definition' widget
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2024 07:57 AM - edited 04-23-2024 08:04 AM
Hello Devs,
I am using 'Data table from instance definition' widget on service portal to show list of incident, And Is there a way I can disable the clickable links? as now the 'Workday App' in the below screenshot is clickable hyperlink.. we want to disable that hyperlink but display just as normal text.
On the UI16 view, we can go list view of incidents and under configure -> list control we have 'omit links' checkbox. but not how we can do that on portal.
How can I achieve that?
Thanks,
Ben.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2024 01:43 PM
Ben,
I'm using the Data Table - Instance Definition Wrapper widget to display data from a table. To disable the clickable links on the table I simply commented out the following line of code:
Client controller (section)
- changed the following line from
$scope.$on('data_table.click', callDataClick); - to
// $scope.$on('data_table.click', callDataClick);