Xpages is one of the most advanced development platform. Built on top of JSF framework, it's a Rapid application development tool
Saturday, 25 February 2012
Monday, 20 June 2011
LotusScript Agent: Generating Server Report for Mailfile usage
change "QueryModeChange" event, by adding this code:
If (Not source.editmode And source.document.HasItem("PostedDate")) Then
continue = False
Exit Sub
End If
Change "QueryOpen" event, and towards the top, add:
If (Not (source.isnewdoc) And source.editmode ) Then
If (source.document.HasItem("PostedDate") ) Then
Continue = False
Exit Sub
End If
End If