I am able to create LinkPost feed item in case console:
//Adding a Link postFeedItem post = new FeedItem();post.ParentId = cId; //case idpost.Body = 'Enter post text here';post.LinkUrl = '/'+ customObj.Id; //custom object record that attached to linkpostinsert post;
But when I click the url, it will open new browser tab.
Is it possible to open linkpost content in console subtab?
Update
I cannot fill javascript function in linkpost link url,
javascript:srcUp('/'+ customObj.Id +'?isdtp=vw');
it shows error:
The link URL must start with http://, https:// or ftp://.
Is there any workaround to open linkpost content in console subtab?