IP Resource File

M

Michael Morse

Hi,

I'm wondering if I can access my IP Forms resource file through code during
runtime.

What I am specifically trying to do is record all the nodes that a user has
changed while the form was open. Using the XDocument OnChange I can grab the
node that was changed but I would like to store this somewhere besides in a
JScript array. Preferably in an XML resource document to enable offline
editing as well.

Any ideas on a solution that will allow me to store multiple paths of
changed nodes that I can easily access with JScript. Also trusted forms is
not an option.

Thanks

-mike
 
F

Franck Dauché

Hi Michael,

One solution for this is to create a group within your main DOM (with a
repeating section). Each time you catch a change, you can add a series of
nodes with to store:
timestamp, XPath, user, etc..

You are basically building a change tracking functionality in your product.

If you have access to a database, you could push that info there. The good
thing about storing it in your primary DOM is that it is self-contained.

Hope that it helps.

Regards,

Franck Dauché
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top