- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2016 01:49 AM
Hi all
So we are currently analyzing if we can replace our current service catalog (based on the standard ServiceNow interface and self-service module - no CMS) with the Service Portal.
We have a number of more advanced catalog items, where we use UI macro to display additional information to the user, that we are not able to achieve using the available variable types.
As UI Macros are not available in Service Portal we need a replacement. Here I have discovered a new "widget" field the catalog varaible form, where you can point to a portal widget and get it displayed on the catalog item.
But we need to be able to interact with the widget and affect what it is displaying based on the values selected in the variables on the catalog item.
Basically I want to write to the data in the widget's scope via a catalog client script.
The normal way of accessing an angular scope from the outside is using the syntax
var scope = angular.element($("#[element]")).scope();
So I have created a clone of the Hello World 1 widget and modified it so the input field has an ID
<div>
Enter your name:
<input id="helloWorld" type="text" ng-model="c.data.sometext" ng-change="c.display()"/>
<h1>{{ c.data.message }}</h1>
</div>
Then I try to access the scope from an onChange script in the catalog item
var scope = angular.element(document.getElementById('helloWorld')).scope();
scope.$apply(function(){
scope.data.sometext = newValue;
});
But i get an error in the console saying (g_env) [SCRIPT:EXEC] Error while running Client Script "onChange_name": TypeError: Cannot read property 'element' of null
So it looks like the catalog client scripts does not have access to the loaded angular in any way. I have tried some different thinks to try and be able to access angular but no avail.
If anybody has an idea I would appreciate any pointers - if we don't solve this, then the portal is not an option.
Regards
Lars
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2016 04:33 AM
I found the solution my self.
You can read and write to the catalog variables using $scope.page.g_form. and then any of the g_form function like setValue and getValue.
Then I use the angular $watch feature to define a function to watch for changes in the catalog variable and then update my data in the widget scope.
It looks like this
HTML template
<div>
Data from catalog variable:
<h1>{{ c.data.message }}</h1>
</div>
Client Script Controller
function($scope) {
var c = this;
//Watch for changes in the name variable
$scope.$watch(function () {
return $scope.page.g_form.getValue('name');
}, function (value) {
//Update local data object with data from variable
c.data.message = value ? 'Content of name variable: ' + value : '';
});
}
Result - the text in the widget is updated when you change focus away from the catalog variable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-15-2016 04:33 AM
I found the solution my self.
You can read and write to the catalog variables using $scope.page.g_form. and then any of the g_form function like setValue and getValue.
Then I use the angular $watch feature to define a function to watch for changes in the catalog variable and then update my data in the widget scope.
It looks like this
HTML template
<div>
Data from catalog variable:
<h1>{{ c.data.message }}</h1>
</div>
Client Script Controller
function($scope) {
var c = this;
//Watch for changes in the name variable
$scope.$watch(function () {
return $scope.page.g_form.getValue('name');
}, function (value) {
//Update local data object with data from variable
c.data.message = value ? 'Content of name variable: ' + value : '';
});
}
Result - the text in the widget is updated when you change focus away from the catalog variable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-18-2016 11:15 PM
Hi Lars,
I am trying to use widget field with macro as a type but it is not rendering the widget itself.Can you tell me what I should do to make it available on catalog item.
Please help as it is bit urgent.Appreciate your help
Warm regards,
Milap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-26-2016 03:13 PM
Good work Lars! Works perfectly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-02-2018 10:00 PM
How to get values for selectbox variables. value is returning choice value not name