tabbar and data processors

Hello,
I have a tabbar I want to use for navigation in my application.
I setup the tabs setHrefMode as ajax-html , and built out seperate html pages for 2 separate grids and update forms. Both pages work find individually, but when i add them into the tabs, the loading works but, I cannot update any data. I get a Load XML error in both tabs, and my php pages do not get called.

It seems to be an issue with dataprocessors from different html pages being used with that ajax-html mode.

I tried iframes, iframe, and iframes-on-demand. That produces a different result, as one tab does work, and i can update in it. But the other tab, renders blank with no errors. So I’m not sure what is going on there, but I’d rather have it work in ajax-html as that seems to be the perfered way.

thanks for any assistance

Hello,

Tabbar in “ajax-html” mode loads content by Ajax and put it as inner html into a tab. So, you should consider this.

It seems to be an issue with dataprocessors from different html pages being used with that ajax-html mode.

Make sure that libraries are included on the page with tabbar and dataprocessor objects are different.

thx, for the clue. It was actually that I needed to include the connector.js in the main page that includes that tab, as the .js files in loaded html files will not load.

works great now.