PDA

View Full Version : What part is missing?


Dominoble
09-20-2007, 10:51 AM
My view and outline aren't loading (404 errors).

"undefined" is being inserted in the path in front of the DXL exporter agent, the outline and the view name so something isn't getting resolved.


ext-base.js (line 12)
http://servername/database.nsf/undefinedMyview?ReadDesign.....

I'm not getting any script errors so it looks like my profile doc path is OK and I'm using an unmodified version of Ext.nd.$$ViewTemplateDefault.

Where should I start looking?

jratcliff
09-20-2007, 11:42 AM
The code builds the "path" from the Ext.nd.Session class.

path = Ext.nd.Session.CurrentDatabase.WebFilePath

So, you need to make sure that the Ext.nd.Session.js FORM is in your db AND the (Ext.nd.Database) SUBFORM is as well.

Dominoble
09-20-2007, 04:52 PM
Thanks Jack. Didn't have the Subform. :">

jratcliff
09-20-2007, 10:56 PM
so that fixed it then?