where to find the RTC icons?
One answer
Hi Surender,
The easiest way is to find the location using your Browser.
The easiest way is to find the location using your Browser.
For instance, using Firefox, access the page which contains the icon that you want to use.
On the Firefox menu options, reach Tools -> Web Developers -> Inspect
Click on the Icon - Depends on the Firefox version, a frame can be presented with the image tag highlighted on the bottom or it can only identify the element name, right-clicking you can reach a menu where you can open the source - you can get the location of the icon there. It may present a root path related with your Application Server, but it most likely will present a context root path with a java class, meaning that the image is inside a jar file.
For instance:
1. Inspecting the product backlog icon:
2. Image Source location:
<span class="icon" style="display: inline-block; background: url("/ccm/web/com.ibm.team.apt.web.ui/internal/editor/images/obj32/product-backlog.png") repeat scroll 0% 0% transparent; width: 32px; height: 45px;"/>
3. You can reach the image using this location:
https://<your server : your port>/ccm/web/com.ibm.team.apt.web.ui/internal/editor/images/obj32/product-backlog.png
Isabel