Use our Google Custom Search for best site search results.
Search
-
Hi moss2007,
If you are using InfoPath 2007 you can use the Design Checker (located in the Tools menu) to determine the areas of your form with compatability problems. Otherwise, the error message makes me think that is a permission problem. Have you added the site that you deployed to to your Local Intranet security zone in Internet ...
-
Hi Simon and welcome to the forum!
Have you downloaded the SharePoint SDK? SharePoint offers many web services for interacting with the entities it stores. There is a Document Workspace web service that has this method: http://msdn2.microsoft.com/en-us/library/ms772465.aspx, which looks promising. I have not actually done this ...
-
Also, if you plan to use your form in the browser, make sure you are designing the form with the "Enable browser features only" option enabled. This is shown when you first open InfoPath.
-
Hi Stephanie,
We have written 4 different tutorials on cascading drop-downs. Have you seen them?
http://www.infopathdev.com/search/SearchResults.aspx?q=cascading+drop+down
If you are still having problems, can you give us a little bit more information about your schema and objectives? Why do you have repeating sections of ...
-
Here's how to set the nil attribute in C# on the IP03 OM. Sorry about the loss of indention.
public void btnClearDate_OnClick(DocActionEvent e)
{IXMLDOMNode dateNode = thisXDocument.DOM.documentElement.selectSingleNode("/my:myFields/my:dateNode");
// This method causes data validation on nodes ...
-
It's probably easiest to just set the values of each of the columns to blank:
rowClone.selectSingleNode( "my:column1" ).text = "";
Attached is a .js file that includes many helpful functions in JScript. These were shipped with the IP03 sample forms.
-
Try parent.appendChild( rowClone );
-
Yes, you need to do something to the effect of:
newDateRow.Attributes.addNamedItem( xmlNil );
I'm not sure if this is the exact syntax in JScript.
-
From looking at your code, I would do this:
Use createNode() to create an attribute with the xsi namepsace, set the value to true, and then add it to the newDateRow object.
-
Hi Rhonda,
The above mentioned "Qdabra Event Log" may be accessed by clicking Start -> Run, typing 'eventvwr' and hitting enter. Then you can select the Qdabra entry on the left side to display an error messages with detailed information.
If you have time tomorrow afternoon I can meet with you one-on-one with a Live ...