Dojo fisheye in backbase space

Hi,

I am using latest Backbase version 4.2.0 (Struts connector).

I wish to use Dojo fisheye widget on one of my backbase enabled jsp. The problem I am facing is, if i write the fisheye widget inside backbase enabled space (inside groupBox) then the fisheye is not rendered.

I have to write widget outside backbase enabled space and as plain html for it to be rendered properly.

Please write how can I include it inside b:groupBox.

Regards,
Ajay

Dojo Fisheye

Hi Akamble,

There is actually an e-page about "Integrating Dojo Fisheye with Backbase".
You can find it in :

http://demo.backbase.com/3rdparty/dojo_fisheye/

Hope this helps,

Dojo Fisheye

Hi Andy,

I have seen this tutorial. It shows integration of fisheye in backbase enabled page.

But fisheye is not within a backbase element (that is what i want). Fisheye is inside normal HTML space.

Regards,
Ajay

Hi Ajay, It should be

Hi Ajay,

It should be possible..., maybe try to wrap the fish eye widget in a b:xhtml tag and use an inline event handler with the DOMNodeInsertedIntoDocument event, for example;

<div>
    <e:handler event="DOMNodeInsertedIntoDocument" type="text/javascript">
        dojo.parser.parse(dojo.byId('myFishEyeWidget'));
    </e:handler>
    <b:xhtml>
       <div dojoType="dojox.widget.FisheyeList"..........
         ........fish eye markup
       </div>

    </b:xhtml>
</div>