- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2017 03:34 AM
Hi,
I have created a catalog item and the view looks as below:
I want to hide that text from the form view. It is actually the Short Description of the catalog Item.
How can I achieve this? Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-08-2017 03:45 AM
Hi,
There are two ways to achieve it.
First is nice and simple: Leave the short description field empty and track any information if you need in a custom field.
Second is you can do it with DOM manipulation in catalog client script.
function onLoad() {
//Type appropriate comment here, and begin script below
document.getElementsByClassName('guide_tray')[0].style.display="none";
}
Please mark correct/helpful based on the impact of the response.
Thanks
Gaurav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-28-2023 10:39 AM
funny thing, i am looking for the same but I know DOM manipulation doesn't work in SP so we will need an alternative for it. Good luck!