A
awz
what is the correct syntax to reference a field in my form so that i can have
that field as my form file name after i click a submitt button to save the
form.
currently my saveAs method looks like this:
function CTRL19_5::OnClick(eventObj)
XDocument.SaveAs(XDocument.DOM.selectSingleNode("/my:TimeSheetRoot/my:ClientName").text);
XDocument.UI.Alert("The file has been successfully saved.");
}
the error i get is that the "file path referred to by an object model call
must be aboslute." how can i make an absolute path reference?
thanks for any help you can give!
awz
that field as my form file name after i click a submitt button to save the
form.
currently my saveAs method looks like this:
function CTRL19_5::OnClick(eventObj)
XDocument.SaveAs(XDocument.DOM.selectSingleNode("/my:TimeSheetRoot/my:ClientName").text);
XDocument.UI.Alert("The file has been successfully saved.");
}
the error i get is that the "file path referred to by an object model call
must be aboslute." how can i make an absolute path reference?
thanks for any help you can give!
awz