Yansa Design System
A growing library of components and methodologies for building better Service Portals

Active Avatar
YDS
E

A customizable user avatar, complemented with a popover pane offering detail and collaboration options.

user-idRS - User sys_id for the avatar
sizeS(Default: small) - Size of avatar (x-small, small, medium, large, x-large)
show-popoverB(Default: true) - Show detail popover when avatar is clicked
placementS(Default: auto right) - Placement of popover (top, left, right, auto right, etc
animationB(Default: true) - Fade popover into and out of view
show-phoneB(Default: true) - Show phone contact icon in popover (if available and on mobile device)
show-phone-desktopB(Default: false) - Show phone contact icon on desktop in popover (if available)
show-connectB(Default: true) - Show Connect contact icon in popover
show-mailB(Default: true) - Show email contact icon in popover (if available)
show-infoB(Default: true) - Show info icon in popover (link to user profile)
show-pictureB(Default: true) - Show large user profile pic in popover
show-companyB(Default: false) - Show user company in popover
show-presenceB(Default: true) - Show user presence indicator on avatar
phone-orderS(Default: businessPhone,mobilePhone,homePhone) - Order in which to prioritize phone contact number (comma-separated)
close-clickB(Default: true) - Only allow one popover open at a time, and auto-close when clicked outside of popover (can affect performance with many avatars on screen)
<yds-active-avatar user-id="[userSysId]" size="small"></yds-active-avatar> <yds-active-avatar user-id="[userSysId]" size="medium"></yds-active-avatar> <yds-active-avatar user-id="[userSysId]" size="large"></yds-active-avatar>

Alerts
YDS
W

A smart alerting engine utilizing the Flex Banner element. Alerts provide flexibility in how you notify your end users of announcements, outages, and more. Features include:

  • Customized styling for color, icon, and sizing
  • Fully internationalized for global audiences
  • Flexible behavior for persistence, user dismissal, or timed dismissal of alerts
  • Targeted alerts based on user, group, department, location or everyone
  • Real-time delivery to ensure alerts are seen as soon as they are available

prev
next
Text - Text or html to display in the alert
Identifier - A string identifier used to target specific alerts to a specific widget
Banner color(Default: #346F9A) - Background color for the alert banner
Text color(Default: #FFFFFF) - Font color for the alert text
Icon(Default: fa fa-bell) - Icon to place alongside the alert text
Position(Default: Top) - Position at which to place the banner (Top or Bottom)
Font size(Default: 12pt) - Font size for text in the banner (pt)
Dismiss text(Default: Click to dismiss) - Text to be placed in the dismiss popover dialog
Users - Specific users who should receive the alert (leave blank for all)
Groups - Specific groups who should receive the alert (leave blank for all)
Departments - Specific departments who should receive the alert (leave blank for all)
Locations - Specific locations who should receive the alert (leave blank for all)
Dismissable(Default: true) - Allow banner to be dismissed with a click (true or false)
Show once per user - For dismissable alerts, track the user dismissal and do not show again (true or false)
Auto-dismiss time - Time until banner auto-dismisses (ms)
Real time(Default: false) - Watch for incoming alerts and display them in real-time, versus on initial page load (true or false)
Days(Default: 7) - How many days past to query for data

Approvals
SP
W

A widget for displaying the logged-in user's requested approvals.

prev
next
Bootstrap color(Default: Default) - Color to apply to list header and border
Glyph - Icon to display in table header
Buttons stacked side by side(Default: false) - Display approve/reject buttons side-by-side

Badge
BS
E

The standard Bootstrap badge, with styling tailored for Service Portal.

<a href="">New Incidents <span class="badge">8</span></a> <a href="">Open Incidents <span class="badge">32</span></a> <a href="">Closed Incidents <span class="badge">78</span></a>

Banner (Alert)
SP
E

The standard Service Portal alert, based on Bootstrap alert styling.

Your request was successfully submitted.
Something went wrong. Please try again later.
spUtil.addInfoMessage('Your request was successfully submitted.'); spUtil.addErrorMessage('Something went wrong. Please try again later.');

Button (Standard)
BS
E

The standard Bootstrap button, with styling tailored for Service Portal.

ng-clickS - Name of a scope function to run when clicked
ng-disabledDB(Default: false) - Disable button
Visit Bootstrap Button documentation for a full listing of options
<button class="btn btn-default">Default</button> <button class="btn btn-primary">Primary</button> <button class="btn btn-success">Success</button> <button class="btn btn-info">Info</button> <button class="btn btn-warning">Warning</button> <button class="btn btn-danger">Danger</button> <button class="btn btn-default btn-xs">X-Small</button> <button class="btn btn-default btn-sm">Small</button> <button class="btn btn-default btn-lg">Large</button>

Button (Promise)
YDS
E

A button that indicates progress and completion of a task upon click.

yds-button-promiseRS - Name of a scope function that returns a promise (usually an $http call)
min-delayI(Default: 500) - Minimum delay time to ensure animation completes (ms)
return-to-initialI(Default: never) - Delay upon completion before button returns to initial state (ms)
finish-text-successS(Default: FontAwesome checkmark) - Text to display upon successful promise completion
finish-text-errorS(Default: FontAwesome X) - Text to display upon erroneous promise completion
finish-override-successDB(Default: false) - Force the successful completion state of the button
finish-override-errorDB(Default: false) - Force the erroneous completion state of the button
ng-disabledDB(Default: false) - Disable button
Visit Bootstrap Button documentation for additional styling & sizing options
$scope.promFn = function(returnVal) { var myPromise = $timeout(function(){ //Expects return value of 'success', 'error', or 'failure' return returnVal; }, 1000); //To react to results of promise externally, attach .then function myPromise.then(function(response){ console.log('Promise completed with result of ' + response); }); return myPromise; };
<button class="btn btn-lg btn-default" return-to-initial=1000 yds-button-promise="promFn('SUCCESS')">Submit w/ Success</button> <button class="btn btn-lg btn-default" return-to-initial=1000 yds-button-promise="promFn('ERROR')">Submit w/ Error</button>

Calendar
YDS
W

An interactive, mobile-friendly calendar widget for working with time-based data. Features include:

  • Year, month, week, and day views
  • Multiple time series from multiple tables available on the same calendar
  • Colorized differentiation of time series
  • Detailed views load in modal directly from calendar

prev
next
Calendar view(Default: month) - Starting view for calendar on load (year/month/week/day)
Form view(Default: default) - Form view to use when opening record in modal
Day start(Default: 00:00) - Start time for day view
Day end(Default: 23:59) - End time for day view
Hour split(Default: 30) - Number of minute at which to split hours in day view
Day view event width(Default: 150) - Width of events in day view (px)
Table - Table from which to gather data
Condition - Conditions to apply to query for data
Display field - Record field to use as event label
Start time field - Record field to use as event start time
End time field - Record field to use as event end time
Primary color - Primary color to use for a time series (darker shade)
Secondary color - Secondary color to use for a time series (lighter shade)
Visit Angular Bootstrap Calendar documentation for additional detail

Callout
YDS
E

A colorized callout for highlighting a block of content or presenting a dismissable alert.

This is some important information I want you to know!

This is normal paragraph text

This is a callout headline

This is normal callout text

And here is some more normal paragraph text

colorS(Default: primary) - A hex (#XXXXXX) or boostrap (primary/success/info/warning/danger) color. Color is applied to the gutter and any headline elements within the callout.
background-colorS(Default: transparent) - A hex (#XXXXXX) color to be applied to the callout background
border-colorS(Default: transparent) - A hex (#XXXXXX) color to be applied to the callout border
dismissableB(Default: false) - Allow callout to be dismissed
<yds-callout color="danger" border-color="#8d8d8d" dismissable=true> This is some important information I want you to know! </yds-callout> <p>This is normal paragraph text</p> <yds-callout color="success"> <h4>This is a callout headline</h4> This is normal callout text </yds-callout> <p>And here is some more normal paragraph text</p>

Catalog Item
YDS
W

An enhanced version of the Service Catalog Item view:

  • Display items in the standard platform layout, maintaining all variable set and container configurations - an enhanced iFrame solution with native styling and no scrollbars
  • Display additional fields for reference & list collector variables
  • Allow ordering of large quantities of items

prev
next

Catalog Order Guide
YDS
W

An enhanced version of the Service Catalog Order Guide view:

  • Display items in the standard platform layout, maintaining classic order guide appearance, variable sets, and container configurations - an enhanced iFrame solution with native styling and no scrollbars

prev
next

Charts
SHR
W

The Highcharts Widget by Darrin Achtman, for creating highly customizable advanced charts.

prev
next
See documentation included on ServiceNow Share

Checkbox Group
YDS
E

A group of checkboxes for selecting multiple options.

choicesRD$ - Array of Strings, Integers, or Objects in format {id:string, text:string}
valueS - Initial value of the field by id (comma-separated for multiple)
orientationS(Default: vertical) - Orientation of checkboxes (vertical or horizontal)
ng-requiredDB(Default: false) - Set group selection mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set group read-only
ng-modelRDS - Name of the scope variable to map the field value to (comma-separated list of selected values)
$scope.checkChoices = ['Corfu', 'Hydra', 'Ios', 'Mykonos', 'Santorini'];
<yds-checkbox-group choices=checkChoices ng-model="checkVar"></yds-checkbox-group>

Count Panel
YDS
W

Add clickable record count panels to any page

prev
next
TitleRS - Label in widget header
TypeR(Default: Count) - Type of panel ('count' or 'link')
URL - URL for 'link' type panels
IconRS(Default: fa-folder-o) - Fontawesome icon for panel
Table(Default: Incident) - Table to query for 'count' type panels
Query(Default: active=true) - Encoded query for 'count' type panels
Style(Default: Active) - Style of panel ('active'=opaque or 'inactive'=translucent)
Page - Page to link 'count' type panels to, passing along table & query parameters

Date Picker
YDS
E

A date picker built for simple deployment and automatic adjustment for the logged-in user's preferred date format. Utilizes MomentJS for formatting.

value$S - Initial value of the field as a MomentJS object or string
system-valueB(Default: false) - Return system date format (YYYY-MM-DD) instead of a MomentJS object
ng-disabledDB(Default: false) - Set field read-only
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-modelRDS - Name of the scope variable to map the field value to (either a momentJS object or a string in system format, depending on parameters)
options$(Default: {format:[Logged-in user format], useCurrent:false, pickTime:false, locale:[Logged-in user language]}) - DateTimePicker options as listed in Bootstrap Datetime Picker documentation
<yds-datepicker ng-model="datePickerVar"></yds-datepicker>

Date & Time Picker
YDS
E

A date/time picker built for simple deployment and automatic adjustment for the logged-in user's preferred date/time format. Utilizes MomentJS for formatting.

value$S - Initial value of the field as a MomentJS object or string
system-valueB(Default: false) - Return system datetime format (YYYY-MM-DD HH:mm:ss) instead of a MomentJS object
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to (either a momentJS object or a string in system format, depending on parameters)
options$(Default: "{format:[Logged-in user format], useCurrent:false, locale:[Logged-in user language]}") - DateTimePicker options as listed in Bootstrap Datetime Picker documentation
<yds-datetimepicker ng-model="dateTimePickerVar"></yds-datetimepicker>

Favorites
YDS
W

Allow users to 'favorite' any item for quick access via a homepage widget or the portal header

  • Favorites can be record-based or URL-based
  • Create global Favorites to appear for all users
  • Configure Favorite Maps to format display with appropriate labels, descriptions, icons, and links
  • Users can easily customize the order/appearance of their favorites directly in the widget
  • Add a Favorites toggle to any page or widget using the included YDS Favorites Toggle widget and directive

prev
next
Additional documentation is embedded in the application. Once installed, visit the Favorite Maps module in the left nav to begin using.
Glyph(Default: star) - Default icon for any manually added favorite or favorite without a Map
Label(Default: My Favorites) - Label in widget header
# of Items(Default: 5) - Number of items to show per page
Bootstrap Style(Default: default) - Bootstrap style for panel & buttons
Allow manual favorites(Default: true) - Allow users to manually added URL-based favorites

Feedback
YDS
W

Display a subtle, clickable tag on the right side of each portal page - a quick & easy way for users to provide portal feedback.

prev
next
Label - Label displayed on the tag and in the header of the feedback modal

Form
YDS
W

An enhanced version of the Form view:

  • Display additional fields for reference & list variables in a pleasing layout with no stacking

prev
next

Form & Field Validation
YDS
E

Validation functionality for forms & field values. Works for fields of type: Input, Select, Date/Time Picker, Radio Button Group, Checkbox Group, and Switch Group.

yds-validateR - Attribute enables validation on any compatible field
ng-requiredDB(Default: false) - Set field mandatory
ng-minlengthDI - Minimum characters allowed for field
ng-maxlengthDI - Maximum characters allowed for field
ng-patternDI - A RegExp that the field value must match
Visit Angular Validation documentation for detail on using validation states to drive form behavior
$scope.monthChoices = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'Novemeber', 'December'];
<form name="myForm"> <label for="monthField">Choose a month</label> <yds-select id="monthField" choices="monthChoices" name="myMonth" ng-model="myMonth" ng-required=true yds-validate></yds-select> <label for="yearField">Choose a year <span style="color:red" ng-if="!myForm.myYear.$valid && myForm.myYear.$dirty">(Must be 4 digits)</span></label> <input id="yearField" class="form-control" name="myYear" ng-model="myYear" ng-required=true ng-minlength=4 ng-maxlength=4 yds-validate> <button class="btn btn-primary pull-right" ng-disabled="!myForm.$valid">Submit</button> </form>

Form Fields
YDS
W

A ServiceNow-form style multiple field display

prev
next
TableR - Table from which to pull fields
Column 1 fieldsR - Fields to display in first column
Column 2 fieldsR - Fields to display in second column
Match fieldR - Field against which to match the 'sys_id' URL parameter
TitleS - Label in widget header
Only show if user can writeB(Default: false) - Only show the widget if the user can write something in it
Hide if no contentB(Default: true) - Hide the entire widget if there is no content
Hide field if no valueB(Default: false) - Hide an individual field if it has no value

Hero Banner
SHR
W

The Cool Video/Carousel Widget by Sush Chandrashekar, for displaying a highly customizable hero banner.

prev
next
See documentation included on ServiceNow Share

Icon
FA
E

Standard Font Awesome icon.

fa-lg/fa-2x/fa-3x/fa-4x/fa-5xS - Size of icon
fa-rotate-90/fa-rotate-180/fa-rotate-270S - Rotated icon
fa-spinS - Spinning icon
fa-fwS - Fixed-width icons (for alignment)
Visit Font Awesome documentation for a full listing of icons & options
<i class="fa fa-thumbs-o-up"></i> <i class="fa fa-thumbs-o-up fa-2x"></i> <i class="fa fa-thumbs-o-up fa-3x"></i> <i class="fa fa-thumbs-o-up fa-4x"></i> <i class="fa fa-thumbs-o-up fa-5x"></i> <i class="fa fa-thumbs-o-up fa-5x fa-rotate-90"></i> <i class="fa fa-thumbs-o-up fa-5x fa-rotate-180"></i> <i class="fa fa-thumbs-o-up fa-5x fa-rotate-270"></i> <i class="fa fa-thumbs-o-up fa-5x fa-spin"></i>

Input (Icon)
YDS
E

Commonly used for search inputs, a customizable input box with text clear capability.

placeholderS(Default: Search) - Placeholder text within the input box
sizeS(Default: md) - Size of the input box (sm, md, lg)
iconS(Default: fa fa-search) - Icon to apply to the input box
ng-disabledDB(Default: false) - Set field read-only
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-minlengthDI - Minimum characters allowed for field (requires ydsValidate)
ng-maxlengthDI - Maximum characters allowed for field (requires ydsValidate)
ng-patternDI - A RegExp that the field value must match (requires ydsValidate)
ng-modelRDS - Name of the scope variable to map the field value to
<yds-icon-input ng-model="iconInputVar" size="lg"></yds-icon-input>

Input (Small)
BS
E

The standard Bootstrap input, with styling tailored for Service Portal.

ng-disabledDB(Default: false) - Set field read-only
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-minlengthDI - Minimum characters allowed for field (requires ydsValidate)
ng-maxlengthDI - Maximum characters allowed for field (requires ydsValidate)
ng-patternDI - A RegExp that the field value must match (requires ydsValidate)
ng-modelRDS - Name of the scope variable to map the field value to
Visit Bootstrap Input documentation for a full listing of options
<input type="text" class="form-control">

Input (Large)
BS
E

The standard Bootstrap textarea, with styling tailored for Service Portal.

rowsI(Default: 2) - Height, in text rows, of field
ng-disabledDB(Default: false) - Set field read-only
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-minlengthDI - Minimum characters allowed for field (requires ydsValidate)
ng-maxlengthDI - Maximum characters allowed for field (requires ydsValidate)
ng-patternDI - A RegExp that the field value must match (requires ydsValidate)
ng-modelRDS - Name of the scope variable to map the field value to
Visit Bootstrap Input documentation for a full listing of options
<textarea class="form-control" rows=5></textarea>

Level Select
YDS
E

A slider input for selecting values across a range of options.

32GB
64GB
128GB
choicesR$ - Array of Strings, Integers, or Objects in format {id:string, text:string}
value$ - Initial value of the field by id
orientationS(Default: horizontal) - Orientation of the level select (vertical or horizontal). Vertical orientation is not available in the Helsinki release.
colorS(Default: primary) - A hex (#XXXXXX) or boostrap (primary/success/info/warning/danger) color for level select highlights
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to
options$ - Bootstrap slider options as listed in Bootstrap Slider documentation
<yds-level-select ng-model="levelSelectVar" choices="['32GB','64GB','128GB']" value="64GB"></yds-level-select>

Managed Callout
YDS
W

A widgetized version of the Callout element, perfect for highlighting important information or alerts:

  • Create and style content in a simple interface
  • Make content viewable and editable by role. Delegated editors work directly from the portal via a widget overlay.
  • Appeal to a global user base with full internationalization.

prev
next
Content - The rich content to be displayed in the callout
View roles - Roles necessary to view callout (leave blank for all)
Edit roles - Roles necessary to edit callout via an icon on the widget (leave blank for none)
Color(Default: #346F9A) - A hex (#XXXXXX) color to be applied to the gutter and any headline elements within the callout.
Background color(Default: transparent) - A hex (#XXXXXX) color to be applied to the callout background
Border color(Default: transparent) - A hex (#XXXXXX) color to be applied to the callout border
Dismissable(Default: false) - Allow callout to be dismissed (true or false)

Managed Content
YDS
W

This widget makes it easy to display & manage rich content in Service Portal:

  • Create content in the rich text editor and have it display in your portal - what you see is what you get!
  • Make content viewable and editable by role. Delegated editors work directly from the portal via a widget overlay.
  • Appeal to a global user base with full internationalization.

prev
next
Content - The rich content to be displayed
View roles - Roles necessary to view content (leave blank for all)
Edit roles - Roles necessary to edit content via an icon on the widget (leave blank for none)

Managed Jumbotron
YDS
W

The Bootstrap jumbotron is an oversized banner for drawing attention to special content:

  • Create and style content in a simple interface
  • Make content viewable and editable by role. Delegated editors work directly from the portal via a widget overlay.
  • Appeal to a global user base with full internationalization.

prev
next
Content - The main content to be displayed in the jumbotron
View roles - Roles necessary to view content (leave blank for all)
Edit roles - Roles necessary to edit content via an icon on the widget (leave blank for none)

Managed Panel
YDS
W

The Bootstrap panel is a bordered box with header, footer, and main content areas, great for highlighting organized information:

  • Create and style content in a simple interface
  • Make content viewable and editable by role. Delegated editors work directly from the portal via a widget overlay.
  • Appeal to a global user base with full internationalization.

prev
next
Content - The main content to be displayed in the panel
Header - The content to be displayed in the panel header
Footer - The content to be displayed in the panel footer
View roles - Roles necessary to view content (leave blank for all)
Edit roles - Roles necessary to edit content via an icon on the widget (leave blank for none)
Color(Default: default) - A boostrap (default/primary/success/info/warning/danger) color for panel highlights

Managed Video
YDS
W

This widget makes it easy to display responsive video content in Service Portal:

  • Display responsive video content from YouTube or Vimeo directly in your Service Portal.
  • Make content viewable and editable by role. Delegated editors work directly from the portal via a widget overlay.

prev
next
Video sourceR - The source of the video content (YouTube or Vimeo)
Video IDR - The video ID
View roles - Roles necessary to view content (leave blank for all)
Edit roles - Roles necessary to edit content via an icon on the widget (leave blank for none)

Managed Well
YDS
W

The Bootstrap well highlights information with a subtle sunken effect:

  • Create and style content in a simple interface
  • Make content viewable and editable by role. Delegated editors work directly from the portal via a widget overlay.
  • Appeal to a global user base with full internationalization.

prev
next
Content - The main content to be displayed in the well
View roles - Roles necessary to view content (leave blank for all)
Edit roles - Roles necessary to edit content via an icon on the widget (leave blank for none)

Match Height
YDS
W

An invisible widget that forces matching height across UI elements (such as panels on a homepage) for a consistent, balanced appearance

prev
next
DescriptorR(Default: .panel) - CSS descriptor for the elements to match height
By Row(Default: true) - Attempt to match height within rows (instead of across page)
Property(Default: height) - CSS property to match
Target - An optional element to match against instead of the element w/ maximum height

Multistage
YDS
EW

An element and widget to display the current stage in a process. Can be used 1) with an array of stages and a current stage to manually render or 2) with record identifiers to automatically render for a specific record. The widget may be dropped directly onto the existing Form page with no inputs - it will attempt to render correctly for the current table.

Ordered
Fulfillment
Shipping
Delivered
stagesRD$ - (Option 1) Array of Strings or Objects in format {id:string, text:string, status:visited/current}
current-stageRD$ - (Option 1) Current active stage
tableRS - (Option 2) Table of the record for which the multistage is rendered
sys-idRS - (Option 2) SysID of the record for which the multistage is rendered
fieldS(Default: state) - (Option 2) Field on the table that contains available stages (for non-Process Flow)
process-flowB(Default: true) - (Option 2) If available, use Process Flow for multistage
workflow-stagesB(Default: false) - (Option 2) Query the wf_stage_default table for additional stages
orientationS(Default: horizontal) - Orientation of the multistage (vertical or horizontal)
text-placementS(Default: top) - Location of text labels (top or bottom)
show-future-stagesB(Default: true) - Display labels for future stages prior to being active
exception-stagesS - Stages that should only show if they are the current stage (comma-separated by id or numeric state)
colorS(Default: primary) - A hex (#XXXXXX) or boostrap (primary/success/info/warning/danger) color for level select highlights
$scope.multiStages = ['Ordered', 'Fulfillment', 'Shipping', 'Delivered']; $scope.currentStage = 'Fulfillment';
<yds-multistage stages="multiStages" current-stage="currentStage"></yds-multistage>

Pagination
UIB
E

The UI Bootstrap paginator, with styling tailored for Service Portal.

total-itemsRD$ - The total number of items available
items-per-pageD$(Default: 10) - The maximum number of items to display per page
max-sizeD$ - The maximum number of pages to display at once in the paginator
ng-modelDS(Default: 1) - The current page number
ng-changeS - Name of a scope function to call when the page number is changed
Visit UI Bootstrap Pagination documentation for a full listing of options
$scope.totalItems = 450; $scope.pageChanged = function(){ //Fetch new page results and assign to array of results being displayed };
<ul uib-pagination total-items="totalItems" items-per-page="20" max-size="5" ng-model="currentPage" ng-change="pageChanged()" force-ellipses="true" previous-text="&lsaquo;" next-text="&rsaquo;"></ul>

Performance Analytics
YDS
W

Display any Performance Analytics widget within Service Portal, with refresh capability.

prev
next
PA WidgetR - Performance Analytics widget to display. Can also be set via URL parameter widget_id.
Link Override(Default: Scorecard) - Determine where to link when clicking the widget (Scorecard, No Link, or No Override)
Refresh Interval(Default: Never) - Frequency with which to automatically refresh widget content, in seconds

Popover
UIB
E

The UI Bootstrap popover, with styling tailored for Service Portal. Can be used on any element type.

uib-popoverRS - Text to display in popover
popover-is-openDB(Default: false) - Show popover (useful for programmatic display of popover)
popover-placementS(Default: top) - Location of popover (top, right, right-bottom, auto top, etc)
popover-titleS - Title to display in popover header
popover-triggerS(Default: click) - Actions that trigger display of popover (mouseenter, click, outsideClick, etc)
Visit UI Bootstrap Popover documentation for a full listing of options
<button uib-popover="I'm a fancy popover!" popover-placement="auto right" popover-trigger="outsideClick" type="button" class="btn btn-primary btn-lg">Click Me</button>

Profile Header
YDS
W

A simple and user-friendly profile widget

prev
next
TableR - Table from which to pull fields
HeaderR - Field to display as the header
Sub-HeaderR - Field to display as the sub-header
Fields - Secondary fields to display

Progress Bar
UIB
E

The UI Bootstrap progress bar, with styling tailored for Service Portal.

7% Complete
valueD$ - The value of progress completed.
maxD$(Default: 100) - The maximum progress value possible.
typeS(Default: primary) - Bootstrap color of progress bar (primary, success, info, warning, or danger).
Visit UI Bootstrap Progress Bar documentation for a full listing of options
$scope.percent_complete = 0; makeProgress(); function makeProgress(){ if ($scope.percent_complete > 100) $scope.percent_complete = 0; $timeout(function(){ $scope.percent_complete = $scope.percent_complete + Math.floor(Math.random()*10); makeProgress(); }, 300); }
<uib-progressbar value="percent_complete"></uib-progressbar> <uib-progressbar type="success" class="progress-striped active" value="percent_complete">{{percent_complete}}% Complete</uib-progressbar>

Radio Button Group
YDS
E

A group of radio buttons for selecting a single option from many.

choicesRD$ - Array of Strings, Integers, or Objects in format {id:string, text:string}
valueS - Initial value of the field by id
orientationS(Default: vertical) - Orientation of radio buttons (vertical or horizontal)
ng-requiredDB(Default: false) - Set group selection mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set group read-only
ng-modelRDS - Name of the scope variable to map the field value to
$scope.radChoices = ['Barra', 'Iona', 'Islay', 'Jura', 'Skye'];
<yds-radio-button-group choices=radChoices ng-model="radioVar" orientation="horizontal"></yds-radio-button-group>

Reports
YDS
W

Display any ServiceNow report within Service Portal, with refresh capability.

prev
next
ReportR - Report to display. Can also be set via URL parameter report_id.
Link Override(Default: Report) - Determine where to link when clicking the report (Report, No Link, or No Override)
Refresh Interval(Default: Never) - Frequency with which to automatically refresh report content, in seconds

Reservation Booking
YDS
W

A widget for the Reservation Booking System, available on Share.

prev
next
Schedule TemplateR - Schedule against which to apply the widget

Select (Simple)
YDS
E

A select box for displaying a searchable list of choosable options. Capable of full customization according to the underlying Select2 library.

choicesRD$ - Array of Strings, Integers, or Objects in format {id:string, text:string}
valueS - Initial value of the field by id (comma-separated for multiple when allow-multiple is enabled)
allow-multipleB(Default: false) - Allow multiple choices to be selected
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to
options$(Default: {placeholder:'-- None --', allowClear:true}) - Select2 options as listed in Select2 documentation
$scope.selectSimpleChoices = ['Appalachian', 'Himalayan', 'Andes', 'Rockies', 'Karakoram', 'Sierra Madre', 'Appenine', 'Hindu Kush', 'Ural', 'Tian Shan'];
<yds-select ng-model="selectSimpleVar" choices=selectSimpleChoices></yds-select>

Select (Multiple)
YDS
E

A select box for searching, displaying, and choosing multiple items. Capable of full customization according to the underlying Select2 library.

  • No matches found
choicesRD$ - Array of Strings, Integers, or Objects in format {id:string, text:string}
valueS - Initial value of the field by id (comma-separated for multiple)
allow-multipleB(Default: false) - Allow multiple choices to be selected
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to (comma-separated list of ids or sys_ids, depending on data source)
options$(Default: {placeholder:'-- None --', allowClear:true}) - Select2 options as listed in Select2 documentation
$scope.selectMultipleChoices = ['Appalachian', 'Himalayan', 'Andes', 'Rockies', 'Karakoram', 'Sierra Madre', 'Appenine', 'Hindu Kush', 'Ural', 'Tian Shan'];
<yds-select ng-model="selectMultipleVar" choices=selectMultipleChoices allow-multiple=true> </yds-select>

Select (Reference)
YDS
E

A select box for searching, displaying, and choosing items from any ServiceNow table. Allows full customization of behavior and appearance of results.

tableRDS - Table name to pull results from
default-queryDS - Encoded query to pre-apply to results
search-fieldsRDS - Table fields to search against (comma-separated)
page-sizeS(Default: 20) - Number of results to pull per page
display-fieldDS(Default: name/number) - Primary display field
display-fieldsDS - Secondary display fields (comma-separated)
valueS - Initial value of the field by sys_id (comma-seperated for multiple when allow-multiple is enabled)
allow-multipleB(Default: false) - Allow multiple choices to be selected
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to (sys_id)
options$(Default: {placeholder:'-- None --', allowClear:true}) - Select2 options as listed in Select2 documentation
<yds-select-reference ng-model="selectReferenceVar" table="cmn_location" search-fields="street,city,state,zip" display-field="street" display-fields="city,state,zip"></yds-select-reference>

Select (User)
YDS
E

A tailored select box for searching, displaying, and choosing one or many users. Customized select boxes like this can be created for any type of data!

default-queryDS - Encoded query to pre-apply to results
search-fieldsDS(Default: name) - Table fields to search against (comma-separated)
page-sizeS(Default: 20) - Number of results to pull per page
valueS - Initial value of the field by sys_id (comma-seperated for multiple when allow-multiple is enabled)
allow-multipleB(Default: false) - Allow multiple choices to be selected
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to (sys_id)
options$(Default: {placeholder:'-- None --', allowClear:true}) - Select2 options as listed in Select2 documentation
<yds-select-reference-user ng-model="selectUserVar" search-fields="name"></yds-select-reference-user>

Select (Quantity)
YDS
E

A select box for selecting a numeric quantity.

choicesRD$ - Array of Strings, Integers, or Objects in format {id:string, text:string}
valueS - Initial value of the field by id
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to
options$(Default: {placeholder:'-- None --', allowClear:true}) - Select2 options as listed in Select2 documentation
$scope.selectQuantityChoices = [1, 2, 3, 4, 5, 6, 7];
<yds-select ng-model="qSelected" choices=selectQuantityChoices style="width:65px" value="1" options="{allowClear:false,minimumResultsForSearch:'Infinity'}"></yds-select>

Signature Pad
YDS
W

A signature pad widget, enabling simple e-signature & image attachment to records in ServiceNow.

prev
next
TableR - Table of the record on which the signature image will be attached
Sys IDR - SysID of the record on which the signature image will be attached
File nameR - Name of the signature image file that will be saved
Field - Image form field name into which to insert the signature image (overrides file name)
Accept button label - Label for the signature accept button
Clear button label - Label for the signature clear button
Complete label - Message when a signature is accepted

Simple Fields
YDS
W

A simply styled multiple field display

prev
next
TableR - Table from which to pull fields
FieldsR - Fields to display, displayed left-to-right across 3 columns
Match fieldR - Field against which to match the 'sys_id' URL parameter
TitleS - Label in widget header
Only show if user can writeB(Default: false) - Only show the widget if the user can write something in it
Hide if no contentB(Default: true) - Hide the entire widget if there is no content
Hide field if no valueB(Default: false) - Hide an individual field if it has no value

Slider
YDS
E

A slider input for selecting integer values across a range.

minDI(Default: 0) - Minimum possible value for the slider
maxDI(Default: 100) - Maximum possible value for the slider
stepDI(Default: 1) - Available increments for slider values
valueI(Default: 0) - Initial value of the field
orientationS(Default: horizontal) - Orientation of the slider (vertical or horizontal). Vertical orientation is not available in the Helsinki release.
colorS(Default: primary) - A hex (#XXXXXX) or boostrap (primary/success/info/warning/danger) color for slider highlights
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to
options$ - Bootstrap slider options as listed in Bootstrap Slider documentation
<yds-slider ng-model="sliderVar" value="20" min="0" max="100"></yds-slider>

Smart Table
YDS
W

The table widget you have been waiting for!

  • Point-and-click customization of table, query, view, count, order, and more
  • Override existing column headers & templates to customize table appearance
  • Add new table columns with custom data gathering scripts & html templates for completely customizable views

prev
next
Additional documentation is embedded in the application. Once installed, visit the Smart Tables module in the left nav to begin using.
TitleS - Label in widget header
Encoded queryS - Query to apply to table
Order by field(Default: Updated) - Field by which to sort table
View(Default: Default view) - View to apply when displaying lists and forms
Results per pageI(Default: 10) - Number of results to display on each page
Primary link fieldS(Default: First column) - Named field to make clickable in order to open the record
Click action(Default: Open in modal) - What do to when a record is clicked ('Open in modal', 'Open in page', or 'Do nothing'
Clickable reference fieldsB(Default: true) - Whether all reference fields in the table should be clickable to open
Show 'Create New' buttonB(Default: true) - Whether to allow new record creation from the table
Field preset queryS - Encoded query to apply when creating new records to auto-set fields
Allow URL optionsB(Default: true) - Allow URL options of 'table','sys_id','query', and 'view' to affect the table data

Switch Group
YDS
E

A group of toggle switches for selecting multiple options.

CorfuHydraIos
choicesRD$ - Array of Strings, Integers, or Objects in format {id:string, text:string}
valueS - Initial value of the field by id (comma-separated for multiple)
orientationS(Default: vertical) - Orientation of switches (vertical or horizontal)
shapeS(Default: square) - Shape of the switch (square or round)
label-placementS(Default: right) - Placement of switch label (top or right)
ng-requiredDB(Default: false) - Set group selection mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set group read-only
ng-modelRDS - Name of the scope variable to map the field value to (comma-separated list of selected values)
$scope.switchChoices = ['Corfu', 'Hydra', 'Ios'];
<yds-switch-group choices=switchChoices ng-model="switchVar"></yds-switch-group>

Table Saw
YDS
W

A fresh take on the popular Table Saw application, built specially for Service Portal. Table Saw provides infinite customizability in intelligent, filterable data views.

  • Quickly define filter emitters with desired filtering capabilities
  • Fully customize the look/feel of the filter widget and the data displayed
  • Add user-friendly filtering to the standard Data Table widget

prev
next
Documentation is embedded in the application. Once installed, visit the Table Saw module in the left nav to begin using.

Tile Navigator
YDS
W

A table-driven, tile-based UI providing hierarchical link content for internal or external resources.

  • Works great as an interactive hero banner or a custom UI element providing curated link content
  • Provide an unlimited number of top-level tiles w/ custom images
  • Provide unlimited levels of links & categories of links beneath each tile
  • Role-based & script-based security limits visibility to tile & link content

prev
next
Additional documentation is embedded in the application. Once installed, visit the Tile Navigators module in the left nav to begin using.
Title - Descriptive name
Header Color(Default: #000000) - Color of widget header text
Text Color(Default: #FFFFFF) - Color of widget text
Primary Color(Default: #1F3031) - Primary color of links
Secondary Color(Default: #496D5E) - Hover color of links

Tooltip
UIB
E

The UI Bootstrap tooltip, with styling tailored for Service Portal. Can be used on any element type.

uib-tooltipRDS - Text to display in tooltip
tooltip-is-openDB(Default: false) - Show tooltip (useful for programmatic display of tooltip)
tooltip-placementS(Default: top) - Location of tooltip (top, right, right-bottom, auto top, etc)
Visit UI Bootstrap Tooltip documentation for a full listing of options
<button uib-tooltip="I'm a Fancy Tooltip!" type="button" class="btn btn-primary btn-lg">Hover Me</button>

Translation
YDS
E

A translation service providing on-the-fly translation of any text to/from any language. Utilizes the ServiceNow Messages table and/or Google Translate to provide translations in real-time for capabilities ranging from portal localization to real-time chat translation. This includes an AngularJS directive and a service so that it is accessible within both HTML and client scripts.

English: Welcome to our design system!

Spanish: Bienvenido a nuestro sistema de diseño!

Arabic: مرحبا بكم في تصميم النظام لدينا!

Chinese: 歡迎到我們的設計系統!

from-languageS(Default: en) - Language translating from (en/fr/es/etc)
to-languageS(Default: Logged-in user language) - Language translating to (en/fr/es/etc)
translatorS(Default: sn,google) - Translation sources: sn/ServiceNow or google/Google (comma-separated)
watch-var$ - Scope variable to watch and, if it changes, retranslate field
show-missing-translationB(Default: false) - For debugging, show if translation missing for each translated term
show-translation-sourceB(Default: false) - For debugging, show translation source for each translated term
google-api-keyS - Google Translate API key
$scope.textToTranslate = "Welcome to our design system!";
<p><b>English: </b>{{textToTranslate}}</p> <p><b>Spanish: </b><yds-translate to-language="es">{{textToTranslate}}</yds-translate></p> <p><b>Arabic: </b><yds-translate to-language="ar">{{textToTranslate}}</yds-translate></p> <p><b>Chinese: </b><yds-translate to-language="zh-TW">{{textToTranslate}}</yds-translate></p>

Typeahead
UIB
E

The UI Bootstrap typeahead, with styling tailored for Service Portal. Can be used with static values or server-side values with the asynchronous $http service. For selecting records or values from a table, try the Select (Reference) element.

uib-typeaheadRD$ - Angular expression denoting available choices, similar to ngRepeat
typeahead-editableD$(Default: true) - Restrict available options to only those in the typeahead list
typeahead-focus-first$(Default: true) - Automatically focus first match as the user types
typeahead-min-lengthD$(Default: 1) - Minimum characters user must type before typeahead begins
typeahead-wait-msD$(Default: 0) - Minimal time after last character is typed before typeahead begins (ms)
typeahead-select-on-blur$(Default: false) - On blur, select the currently highlighted match
typeahead-select-on-exact$(Default: false) - Automatically select a choice when it is the only available match
ng-requiredDB(Default: false) - Set field mandatory (requires ydsValidate)
ng-disabledDB(Default: false) - Set field read-only
ng-modelRDS - Name of the scope variable to map the field value to
Visit the UI Bootstrap Typeahead reference for a full listing of options
$scope.taChoices = ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York', 'North Dakota', 'North Carolina', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming'];
<input type="text" ng-model="taSelected" uib-typeahead="choice for choice in taChoices | filter:$viewValue | limitTo:10" class="form-control">

Widget Accordion
YDS
W

Display any combination of widgets in a Bootstrap accordion

prev
next
Title - Descriptive name
Tab labelRS - Label of a tab
Tab widgetR - Widget to display in a tab
Tab orderI - Order in which to display tabs
Tab visibility(Default: All users) - Limit visibility of a tab based on user roles, conditions, or server script

Widget Tabs
YDS
W

Display any combination of widgets in Bootstrap tabs

prev
next
Title - Descriptive name
Tab labelRS - Label of a tab
Tab widgetR - Widget to display in a tab
Tab orderI - Order in which to display tabs
Tab visibility(Default: All users) - Limit visibility of a tab based on user roles, conditions, or server script

Wonder List
YDS
W

The only list widget you'll ever need.

  • Point-and-click creation of customizable, paginated lists gathered from one or many tables
  • Sort uniformly on a common field, keeping pertinent information up-top, regardless of data source
  • Choose from several list styles, ranging from classic panels to tiles
  • Examples of uses include
    • Interleave your users' tasks & requests into a single handy list
    • Consolidate popular Links, News, Knowledge, and more
    • Create data-driven navigation panes for your portal

prev
next
Additional documentation is embedded in the application. Once installed, visit the Wonder Lists module in the left nav to begin using.
Title(Default: My Tickets) - Label in widget header
Glyph - Icon displayed in widget header
Sort field(Default: Updated) - Field by which to sort all items (works best if all records have this field) Note: Can be overridden for individual record types
# of Items per page(Default: 5) - Number of items to show per page
Max # of Items(Default: all) - Maximum number of items to display
Style(Default: panel) - Visual style of the list
Max label characters(Default: 40) - Maximum number of characters to show for labels
Max secondary characters(Default: 60) - Maximum number of characters to show for secondary fields
Empty message(Default: There are no items to list) - Message to display when there are no items to list

Word Cloud
YDS
W

A lightweight word cloud widget that contains weighted terms that may optionally link to content like KB Articles, Records, etc

prev
next
TagsR - A list of terms, weights, and URLs to display (Can also be provided dynamically via script or event broadcast)
Shuffle(Default: true) - Shuffle terms before display
Open links in new tab(Default: true) - Open links in new vs same tab
Title - Label in widget header
Sad Face

There are no matching results.

Recommend an addition to YDS?