- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2024 11:58 PM
Hi All,
How to remove the information preview icon (i) symbol from the "who is impacted" field and this is the reference field form sys_user table. This is only particular one reference field.
Please suggest how to achieve this requirement.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 01:29 AM
sure @ashok17 so first what you have to do is go to the page where this field is visible then right click on your page and click inspect as shown below
once done click on inspect and hover it over i icon then you will get a reference is as "sp_formfield_reference_<fieldname>"
and after getting the id ctrl +right click you will get a pop up so from there click on "Instance in Page Editor
There you will get a css page just add the code as below but change it as per required for your field
#sp_formfield_reference_add you field backend name > .add-on > button.lookup{
display:none;
}
save it and then try i icon will disappear
Please check and Mark Helpful and Correct if it really helps you.
Regards,
Swathi Sarang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 01:29 AM
sure @ashok17 so first what you have to do is go to the page where this field is visible then right click on your page and click inspect as shown below
once done click on inspect and hover it over i icon then you will get a reference is as "sp_formfield_reference_<fieldname>"
and after getting the id ctrl +right click you will get a pop up so from there click on "Instance in Page Editor
There you will get a css page just add the code as below but change it as per required for your field
#sp_formfield_reference_add you field backend name > .add-on > button.lookup{
display:none;
}
save it and then try i icon will disappear
Please check and Mark Helpful and Correct if it really helps you.
Regards,
Swathi Sarang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2024 02:26 AM
Hi Swaithi
Thankyou for providing this solution and it's works me.