Skip BCP, Is possible to skip reading some code inside panelSet or panelLayout?

Sirs, we used paneLayout for the GUI, and as we load a video source (ip camera) we need javascript and code that might not be always compatible with BCP engine.
Is possible to instruct BCP to skip some part of code, instead of using iframes?

Rgds, Eduardo
Ps: a basic test can be viewed at: http://develop.visionica.com/new_visionica

Use <b:xhtml>

Hi,

You can use the <b:xhtml> tag to wrap around anything you don't want to be processed by the engine.
(if you look at the code for that widget you'll see it does this by overwriting the __children method, so you can use this for your own widgets too)

G.

Re <b:xhmtl>

Thanks for reply Mr. G !

Backbase will ignore at all code between b:xhtml tag?

We're thinking in making a widget for camera player and other for VLC player, as flash or applet, so Javascript and other resources will be needed. Inside the widget b:xhmtl will have the same effect?

B. Rgds, Eduardo

Re <b:xhmtl>

Hi Eduardo,

Yes,BB engine will ignore all code between b:xhtml tags.It is normally used for large amounts of regular XHTML elements that do not need to be processed by the engine. Separating static XHTML content from the controls processed by the engine has a positive effect on application performance.

<b:modal label="myDate" id="myDate" center="true">
<b:xhtml>
<?php
echo(date("l dS \of F Y h:i:s A"));
?>

</b:xhtml>
</b:modal>     
.

Cheers,

Yudi

Re <b:xhmtl>

Noted thanks Yudi !

We're trying to make a widget to display live video feed from a camera. Basically, loading an active-x and the parameters that controls it.
If we can make the engine ignore the content of the new window, it will be possible to do it.
This is the HTML+JS
http://develop.visionica.com/simule_alpha_old/player.php

Rgds, Eduardo