Tutorial: Build a custom widget
-
- UpdatedFeb 1, 2024
- 9 minutes to read
- Washington DC
- Service Portal Designer
Follow this tutorial to build a custom widget that displays Service Catalog items. Use this tutorial as a model to help you understand the advanced scripting power of the Service Portal.
- Displays popular items to the user prior to any search.
- Queries the Service Catalog and displays available options to the user.
- Includes an embedded SC Catalog Item widget, allowing the user to view and order items within the Quick Order widget.
- Uses an Angular Provider to display a category icon beside each queried item.
Create a widget and set up a template
Create the Quick Order widget to query items in the Service Catalog.
Before you begin
Role required: admin or sp_admin
Procedure
Add a server script to query an instance table
After adding your widget and creating a basic template, you can define advanced client and server scripts that enable users to query data from an instance table. You can pass the data model between the client and server by querying data from the database, displaying it to the user, and sending any updates back to the server.
Before you begin
Role required: admin or sp_admin
Procedure
Manage the empty state of a widget
Display a list of popular items to the user before any search terms are entered.
Before you begin
Role required: admin or sp_admin
About this task
Because no search has been executed when the widget initializes, the server input variable is undefined. This empty state may cause confusion when a user first interacts with the widget. To solve this issue, give your widget something to display when the input variable is empty. This initial data can guide your users when initially interacting with your widget.
Procedure
Embed an existing widget
Enable the user to view and purchase Service Catalog items in the Quick Order widget by embedding the SC Catalog Item widget.
Before you begin
Role required: admin or sp_admin
About this task
Instead of duplicating code, you can embed widgets to leverage pre-existing functionality. The SC Catalog Item widget is a base system widget that enables the user to view and purchase Service Catalog items.
Procedure
Create a reusable directive and add it to a widget
Angular Providers are reusable components that can be added to multiple widgets. Using the Widget Angular Providers table, create a directive that shows a category icon next to each result in the Quick Order widget.
Before you begin
Role required: admin or sp_admin
About this task
Angular Providers let you build angular directives and services that can be injected into your client script controller. The code in a Provider differs from a typical Angular directive or service because it must be anonymous, without being appended to a specific module.
Procedure