Tagged Questions
0
votes
0answers
12 views
Adding/Modifying fields in the audit log excel report - Sharepoint 2010
I'm very new to Sharepoint development and currently working on Audit log reports in Sharepoint 2010.
Is it possible to add custom fields to the excel report that gets generated in Sharepoint 2010.For ...
1
vote
0answers
92 views
There's a way to sort the SPAuditQuery at Query construction level?
If we have
SPAuditQuery auditQuery = new SPAuditQuery(context.Site);
auditQuery.RestrictToListItem(item);
auditQuery.RowLimit = (uint)numberOfEvents;
auditQuery.SetRangeStart(startRange);
...
2
votes
1answer
270 views
Can I Access the SPAuditQuery from the JavaScript Class Library?
Or there's a SP2010 Built-in service to access Audit data?
[UPDATE]
Quick awnser, No, there's no way to access the SPAuditQuery from the SP JavaScript Class Library.
At the end I end up using a WCF ...