Service Portalの修正について

サービスポータルを開くときにブラウザのタブ名を編集する方法は?

  "Service Portal Configuration/Pages/"の "index" ページ

そこのTitleを変更すること

https://community.servicenow.com/community?id=community_question&sys_id=d8db2a28dba12b442e8c2183ca961920#:~:text=%2FPortal%20title%22%20)-,and%20to%20update%20the%20page%20name%20part%20go%20to%20%22Service,change%20this%20page%20%22Title%22.&text=Yes%2C%20if%20the%20order%20of,name%20title%20itself%20if%20needed!


Link Icon widgetでimageを添付する方法について


image tableにイメージをアップロードしてから、
Icon Linkをクローンしてから、
そこのソースコードにイメージを指定すること

  <!--// Circle Icon -->
  <a ng-if="::(options.link_template == 'Circle Icon')" ng-href="{{::data.href}}" class="circle_icon {{::options.class_name}} text-{{::options.color}}" target="{{::data.target}}">
    
<img src="<imagename>.jpg" width="500" height="600">
<span class="fa fa-stack fa-2x">
      <i class="fa fa-circle fa-stack-2x"></i>
      <i class="fa fa-{{::options.glyph}} fa-stack-1x fa-inverse"></i>
    </span>
    <h2>{{::options.title}}</h2>
    <span class="text-muted">{{::options.short_description}}</span>
  </a>

https://community.servicenow.com/community?id=community_question&sys_id=d7402340dbfe9810d5c4d9d968961981

ちなみにicon-linkの色は直指定できる
 icon-link-background-{{:white}} 

また、Icon-linkの色もつく。



https://community.servicenow.com/community?id=community_question&sys_id=5e9d56c5dbf837c414d6fb2439961914
Next Post Previous Post
No Comment
Add Comment
comment url