|
|
Browse by Tags
All Tags » Tips
Showing page 1 of 2 (17 total posts)
-
As yet I have not tested this, but it sounds good. especially useful for large lookups, which in standard InfoPath are pretty painfully slow due to the massive amount of code that is produced by InfoPath Forms Services. This method would mean that you could write your own code which is much more efficient. Although to be honest ...
-
There seem to be some people in the big world of blogging that have posted that the correct way to get Outlook messages to be correctly crawled and made searchable within Sharepoint is to edit the registry.
They are now out of date, as Microsoft have released a Filter Pack that provides this functionality, albeit undocumented.
The 3 blogs I have ...
-
Well the underlying issue of my previous post was the fact that, when creating a calculated custom field referring to the system field ''Modified'' as part of the calculation in a document library, the value would change to 01/01/1899 when a document was modified. This was very annoying so I attempted to find workarounds, although to no ...
-
Just been trying to find a good way of deploying these to different MOSS instances... e.g. Development, Test, QA & Live and also for giving to others for pre-sales demos.
Thanks to Chris O'Brien for the very helpful pointers and code on this, check out his blog series at : MOSS Artifacts Series
These are implemented using Web Solution ...
-
If you have any lookup columns defined which will not appear in the site columns, it may be because the ReadOnly attribute is set to TRUE, try changing it to FALSE and re-installing and re-activating the feature and it should then display in the site columns list. At least this is what happened for me after much frustrated beating of my ...
-
Well it would seem that there is a little issue of compatibility between forms created under beta2 TR and the RTM release. This is fixable but requires a little bit of effort for the forms where this problem occurs, by no means will it be all forms....You will also only have the problem if you are creating a browser compatible form.
Now if you ...
-
e.Site contains an XPathNavigator to the current node. It is worth noting that this is actually different to the xpath that e.Match refers to.
It seems that if you have a repeating group in the xml and then the event is on a field within the repeating group; at this point in proceedings the value of e.Match is such that it contains the xpath to ...
-
Another handy thing to know
String xpath = ''sum(/ns1:Invoice/ns1:InvoiceDetail/ns1:Lines/ns1:Line/ns1:AmountMatched)'';int amountMatched = Int32.Parse(this.MainDataSource.CreateNavigator().Evaluate(xpath, this.NamespaceManager).ToString);
The above code shows how to evaluate any valid xpath expression so that you can calculate ...
-
This is a handy little thing that I have discovered today....
It is possible to display on a view a repeating table/section twice(or more if you so wish), such that the first one displays all lines and then the other one displays a restricted list of lines.
This is done by using conditional formatting on the second set such that it only ...
-
Bodacious!
I am very very happy, I have been struggling for ages with a rather spurious error - ''non-datatype error''. It turns out that it's due to having the xsi:nil parameter within my schema definition.
So to be sure that you are always able to set the value of your field use the following code (as provided by the most wonderful Scott Heim ...
1
|
|
|