How to get Custom Icon in List View

arnabbose
Tera Expert

Hello,

I wanted to know how to bring customized icons such as below in list view of a custom table. These icons will depict certain conditions like shared items / transferred items. However, wanted to check if it is possible to bring such customized icons in list view.

find_real_file.png

22 REPLIES 22

Hi,



Any luck on completing your requirements. I am also having similar requirement where we need to use two icons for few callers which currently we are trying and not yet succeeded.



Appreciate if someone can share possible solutions


You can possibly use the individual icons against 2 specific columns. That's the workaround I applied!


Paras6
Kilo Contributor

Hi Arnab,

I am also trying to do that, but single image against single column in list view. I had tried the suggested way but not able to see image in list view.

Had you changed anything in field style for you customized table or it was same like caller id field style. 

I had made like this

value   javascript:current.fieldname.vip == true

background-image: url('images/icons/vip.gif');

background-repeat: no-repeat;

background-position: 98% 5px;

padding-right: 30px;

In mycase Its not working. Please help me out

 

sriteja
Tera Contributor

Hi all,

I am implementing this kind development on caller field, on list view VIP and Key user icons must display when both conditions are true, Let me know if there is any solution on this.

 

Thanks 

A.M.Sriteja.  

kishore33
Kilo Contributor

Hi guys ,

         Im getting the Output but icons are overlapping on each other...

 

Condition : javascript:current.caller_id.u_key_role == true && current.caller_id.vip == true

 

style : background-image: url('images/icons/user.gif')  ,  url('images/icons/vip.gif') ;

 

thanks .