External Collaboration Toolkit for SharePoint has been released and can be downloaded from http://www.microsoft.com/collabkit. The toolkit runs on MOSS 2007 and WSS 3.0.
All About SharePoint is a blog about SharePoint, InfoPath and related technologies. It was started in 2005 and has good readership in many countries. It covers SharePoint 2003, 2007, 2010, 2013, 2016 and Office 365. You can read articles, tips, tutorials and news. It has code samples and complete applications as well.
Saturday, March 22, 2008
External Collaboration Toolkit for SharePoint released
Friday, March 14, 2008
How to find a node using expressions
If your main data source contains hundreds of nodes, how will you find one using expressions? Suppose "Nodes" is the parent node with the following xpath:
XPathNavigator nodes = this.CreateNavigator().SelectSingleNode("/my:myFields/my:Nodes", this.NamespaceManager);
To find nodes inside "Nodes" (parent node), do the following
nodes.SelectSingleNode("child::*[contains(name(),"abc")]");
This will select the child node that has "abc" in its name. This is just an example and can have many practical uses.
Publishing web enabled InfoPath form using STSADM command
Learn how to publish web enabled InfoPath forms using STSADM command line utility. It's simple. Admins use stsadm to publish forms. It's easy to create a batch file of commands that will remove form, deactivate form, upload form, activate form and upgrade form when needed.
Subscribe to:
Posts (Atom)