I have a view that opens via html and lists certain docs. The final column has a link to the actual doc and I was trying to open it in a new window, but also to bring focus to it. There’s no problem opening it in the same window, or sending it back to the main window in a frame that I specify, but I can’t seem to get it to focus on either of those last options. It’s a simple a href tag like this:
<a href="906ba048e29073b280256c610053acf7/“+@Text(@DocumentUniqueID)+”?OpenDocument">Link To Document
I’ve tried this:
<a href="906ba048e29073b280256c610053acf7/“+@Text(@DocumentUniqueID)+”?OpenDocument" target="myFrame">Link To Document
And this:
<a href="906ba048e29073b280256c610053acf7/“+@Text(@DocumentUniqueID)+”?OpenDocument" target="myFrame" onFocus>Link To Document
And this:
<a href="906ba048e29073b280256c610053acf7/“+@Text(@DocumentUniqueID)+”?OpenDocument" target="blank">Link To Document
Any ideas on this one? Thanks in advance.