2 embedded views on WWW

Hi,

It’s there any way to display two embedded views on one page/form whatever ??

I’ve tried diff subforms, different forms to put data into view, different views - it’s working only when embedded view diplays content as Java(which I can’t use)

best regards

Subject: Very much

Thanks very much in advance

Subject: You can use iframes

This is an common issue. You can have as many views as you want using .

Subject: Use AJAX/ActiveX and ReadViewEntries

I’ve used AJAX/ActiveX and …/View?ReadViewEntries to display a dashboard with 6+ views.

I create a Named or

and then use javascript to populate the or
with code similar to the following:

JS Header

// Documents listing

var sourceMyDocs = new ActiveXObject(‘Microsoft.XMLDOM’);

sourceMyDocs.async = false;

sourceMyDocs.load(‘myByTitle?readviewentries&count=9999&start=1&restricttocategory=’ + viewKey + “&now=” + tmpUnique);

var stylesheetMyDocs = new ActiveXObject(“Microsoft.XMLDOM”);

stylesheetMyDocs.async = false;

stylesheetMyDocs.load(“mybytitle.xsl”);

onload event

MyDocs.innerHTML =sourceMyDocs.transformNode(stylesheetMyDocs);

Marc

http://www.gearuptech.com

Subject: Thanks

Thanks - I’ll try it