Skip to page contentSkip to chat
ServiceNow support
    • Community
      Ask questions, give advice, and connect with fellow ServiceNow professionals.
      Developer
      Build, test, and deploy applications
      Documentation
      Find detailed information about ServiceNow products, apps, features, and releases.
      Impact
      Accelerate ROI and amplify your expertise.
      Learning
      Build skills with instructor-led and online training.
      Partner
      Grow your business with promotions, news, and marketing tools
      ServiceNow
      Learn about ServiceNow products & solutions.
      Store
      Download certified apps and integrations that complement ServiceNow.
      Support
      Manage your instances, access self-help, and get technical support.
The 'Edit' icon in 'Actions' column in Multi Row Variable Set is not displayed correctly when non-English language is selected after upgrade to Utah EA - Known Error
  • >
  • Knowledge Base
  • >
  • Known Error (Knowledge Base)
  • >
  • The 'Edit' icon in 'Actions' column in Multi Row Variable Set is not displayed correctly when non-English language is selected after upgrade to Utah EA
KB1289518

The 'Edit' icon in 'Actions' column in Multi Row Variable Set is not displayed correctly when non-English language is selected after upgrade to Utah EA


2158 Views Last updated : Sep 16, 2023 public Copy Permalink
KB Summary by Now Assist

Description

The 'Edit' icon in 'Actions' column in multi-row variable set is not displayed correctly when non-English language is selected after upgrade to Utah EA.

Steps to Reproduce


1.Create a catalog item with multi row value set

2.Switch to English

3.Open the catalog item which is created in step1 on portal
4.Add new row for multi row value set
==>'Edit' icon in 'Actions' column in MRVS is displayed correctly.

5.Switch to Japanese

6.Open the catalog item which is created in step1 on portal


7.Add new row for multi row value set
==>'Edit' icon in 'Actions' column in MRVS is NOT displayed

 

Workaround

For workaround, Create a UI Macro with the name 'sp_element_sc_multi_row' and copy paste the below given contents in the XML field.

	<div class="wrapper-md r-2x"  ng-if="field.columns_meta.length > 0" ng-class="{'b': !c.isMEE}">
	<sp-widget widget="c.activeRow" ng-if="c.activeRow"></sp-widget>
    <div ng-if="!field.readonly &amp;&amp; !field.sys_readonly" ng-class="{'m-l m-b ': c.isMEE, 'form-group': !c.isMEE}" style="min-height:0px;">
        <button type="button" title="{{::field.max_row_tooltip_msg}}" class="btn btn-primary m-r" ng-click="c.createRow()" ng-disabled="!c.canInsert()" id="{{::field.sys_id}}_add_row" aria-label="{{c.addButtonAriaLabel}}">${gs.getMessage('Add')}</button>
        <button type="button" class="btn btn-default" ng-click="c.clearValue()" ng-disabled="!c.canClearValue()" aria-label="{{c.removeAllButtonAriaLabel}}">${gs.getMessage('Remove All')}</button>
    </div>
    <div style="overflow-x: auto;">
        <table class="table table-bordered table-striped" ng-class="{'m-b': c.isMEE, 'm-b-xs': !c.isMEE}" aria-describedby="id-caption-mrvs">
        		<caption id="id-caption-mrvs" class="sr-only">{{::field.label}}</caption>
            <thead>
                <tr>
                    <th id="id-actions" scope="col" ng-if="!field.readonly &amp;&amp; !field.sys_readonly" class="text-nowrap">${gs.getMessage('Actions')}</th>
                    <th id="id-question-{{::col.id}}" scope="col" ng-repeat="col in ::field.columns_meta track by col.id" class="text-nowrap">{{::col.label}}</th>
                </tr>
            </thead>
            <tbody>
                <tr ng-if="field._value.length == 0 ">
                    <td ng-if="!field._loadingData" class="text-center" colspan="{{::field.columns_meta.length + 1}}">${gs.getMessage('No data to display')}</td>
                </tr>
                <tr ng-if="field._loadingData">
                    <td class="text-center" ng-if="field._value.length == 0" colspan="{{::field.columns_meta.length + 1}}">
                    	<i class="fa fa-spinner fa-pulse fa-3x fa-fw" aria-hidden="true" title="${HTML:gs.getMessage('Updating value')}"></i>
                    	<span class="sr-only">${gs.getMessage('Updating value')}</span>
                	</td>
                </tr>
                <tr ng-repeat="row_display_value in field._displayValue track by $index" ng-animate="{enter: 'animate-enter', leave: 'animate-leave'}" style="word-break: keep-all;">
                    <td headers="id-actions" ng-if="!field.readonly &amp;&amp; !field.sys_readonly" ng-class="{ 'actions-mobile': {{ c.isMEE }} }">
                        <a href="javascript:void(0);" class="wrapper-xs fa fa-pencil" role="button" data-original-title="${HTML:gs.getMessage('Edit Row')}"  aria-label="${HTML:gs.getMessage('Edit Row')} {{$index + 1}}" data-toggle="tooltip" data-placement="top" ng-click="c.updateRow($index)" ng-class="{'btn disabled no-border' : c.disableMRVSActions}"></a>
                        <a href="javascript:void(0);" class="wrapper-xs fa fa-close" role="button" data-original-title="${HTML:gs.getMessage('Remove Row')}" aria-label="${HTML:gs.getMessage('Remove Row')} {{$index + 1}}" data-toggle="tooltip" data-placement="top" ng-click="c.deleteRow($index)" ng-class="{'btn disabled no-border' : c.disableMRVSActions}" id="remove-row-{{$index}}"></a>
                    </td>
                    <td headers="id-question-{{::col.id}}" ng-repeat="col in ::field.columns_meta track by col.id" style="text-overflow: ellipsis;">{{c.getCellDisplayValue(row_display_value[col.name], col.type)}}</td>
                </tr>
            </tbody>
        </table>
    </div>
</div>

Note: Please make sure when the instance is upgraded with the next release, the above created UI Macro will be to deleted/deactivated in order for the new changes to be picked up.


Related Problem: PRB1648445

Potentially Seen In

There is no data to report.

Fixed In

Utah Patch 2
Vancouver

The world works with ServiceNow.

Sign in for more! There's more content available only to authenticated users Sign in for more!
Did this KB article help you?
Did this KB article help you?

How would you rate your Now Support digital experience?

*

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

What can we improve? Please select all that apply.

What are we doing well? Please select all that apply.

Tell us more

*

Do you expect a response from this feedback?

  • Terms and conditions
  • Privacy statement
  • GDPR
  • Cookie policy
  • © 2025 ServiceNow. All rights reserved.