- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2017 11:16 AM
Hi Team,
How to keep Global Search Icon always expanded position rather than after clicking .
Recently we have upgraded to Helsinki, where global search icon is always closed , after clicking the magnifying glass it expands and alows to write, Is there any way to keep always open so that directly we can add context.
Before click
After Click.
rather than click i wanted allays this to be like open position only is there any property I need to enabled or disabled..?
Thanks,
Nithin.
PlatformDeveloper CommunityChampion EnablementBlogs
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 05:28 AM
Looks like ServiceNow wants to add and remove that class name at will. In order to achieve this you need to set inline styles to override the class setting. Not quite as elegant, but it will give you the desired effect. Try this. It's similar to the link that oharel linked to above; just consolidated a bit.
addLoadEvent( function() {
top.$j('#sysparm_search').css({'width': '150px', 'opacity': '1', 'border': '1px solid #ddd'});
});

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 05:28 AM
Looks like ServiceNow wants to add and remove that class name at will. In order to achieve this you need to set inline styles to override the class setting. Not quite as elegant, but it will give you the desired effect. Try this. It's similar to the link that oharel linked to above; just consolidated a bit.
addLoadEvent( function() {
top.$j('#sysparm_search').css({'width': '150px', 'opacity': '1', 'border': '1px solid #ddd'});
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 05:55 AM
Thanks Mark . It's working.