Hi,
I need the ability to render DirectLinks in an alternate way.
Instead of the standard:
<a href="/myapp/app?service=direct/1/Home/$PageWrapper.foo">Foo</a>
I need it to render like:
<a href="javascript:void(0);"
onclick="window.MyElement.openChild({
name : 'foo',
url : '/myapp/app?service=direct/1/Home/
$PageWrapper.foo',
width : 860, height : 640, focus : true,
scrollbars: 1});">Foo</a>
Is the best approach to implement my own ILinkRenderer? I'm having
trouble finding which default implementation of ILinkRenderer
DirectLink is using (but maybe I'm missing something obvious).
Any tips or examples would be much appreciated.
Thanks in advance.
eric