inserting values from taskpane

A

Alex

I would like to insert some values into a repeating table
from the taskpane when the user double clicks on the
item. The items in the taskpane are from a sql db.

How can I accomplish this?

Thanks
 
B

Brian Teutsch [MSFT]

The code you want is:
window.external.Window.XDocument.DOM and/or
window.external.Window.XDocument.Extension.functionsYouDefined()

You can write against the DOM from the task pane, or use a function that's
part of your script to pass values from the task pane.

Brian
 
Top