161 | @IsRichTextEmpty and LotusScript/Java equivalentsBen Langhinrichs6939 - 05 2007 / (6) Even having a rough way to do this in Midas, I would really like to see a simple @formula (and matching LotusScript) method for determining if there was anything in the rich text. Even better would be if it took an argument that specified whether whitespace was included, so you ... |
55 | Programming API for the Mail Database, Personal Address Book and Domino DirectoryJens Winkelmann375 - 08 2008 / (6) I wish we have a programming API to access and edit the mail database, the personal address book and the Domino Directory The API must support LotusScript and Java. It is not professional to create a document with field and than find ... |
44 | Open up all the document properties to Java/LSAndy Harris754 - 06 2008 / (1) The Document/NotesDocument classes currently allow read access to things like creation date, last modified, etc.
However, there are a lot more properties to documents than that (when created in the current file to name one).
These should be made available as properties like the others. |
41 | Book Proposal: Domino goes mobile: HTML5, CSS3 and AjaxJason Hook2830 - 15 2010 / (2) In response to Ben's call for book ideas Not your usual here's how to mobilize your companies business process applications. Instead a look at using Domino to host a twitter integrated, location aware application fit to run on Android, iPad and iPhone. We'll cover: 1) What's ... |
33 | Agent Manager - schedule ahead...Bill Buchan585 - 04 2008 / (6) I've seen a LOT of workflow processing agents in Notes. And the one thing they all have in common is that they have to waken up at a regular interval, check all pending documents, and move around document status. What any workflow system needs is the ability to ... |
28 | Debugger for JavaHynek Kobelka8080 - 02 2007 / (3) Most developers are used to Lotus-Script. They would not have much of a problem to write scripts in Java. The general syntax can be learned in a few hours and the main knowledge lies actually in the object-modell of the Notes-Classes, which are identical to LotusScript. However what ... |
26 | Make design resource document data available programatically (with LS or Java)Make file (and other) resources' data available programatically. I can currently grab a resource design doc using a NotesNoteCollection and find what I'm looking for by searching for the $Title that I need, but if the resource is -say- a file I can't get the file data in any simple manner using LS ... |
25 | Detect when UI-document are in Dialog modeTo unify the use of code and design elements (Subform) is sometimes useful to know we are in dialogue or not. Example: Subform used as embedded (checking for filling in the fields needed on QuerySave) and as a dialogue (on QueryClose). I propose to add a property IsDialog as Boolean ... |
25 | Remove the need of recycle()Per Holmberg439 - 10 2010 / (1) There should be no need calling recycle() on Domino Java objects. Java has a garbage collector and for almost every other Java API there is no need for doing this kind of memory clean-up. The knowledge and documentation of how the use the recycle() (and if you need to ... |
22 | Remove Err=4091 from GetDocumentByUNID methodGeneration of this error is useless, it only hinders. Quite enough to return Nothing.
Similar GetDocumentByID method does not generate errors. |
20 | New classes for Appointments and other mail/calendar entriesMichael Falstrup856 - 05 2011 / (2) I would very much like to see some new Classes or API's if you like, that makes it easier to create Appointments, Memo's and other Mail/Calendar entries, without having to remember all the speciel fields, that have to be set. Then we could create AppointMent and memos as objects and ... |
19 | Make task functionality with // TODO comments in Java available for LotusScript etcPhil Warner232 - 21 2010 / (0) In Designer 8.5.1 I've added the Tasks window to the Domino perspective (Window>Show Eclipse Views>Other>General>Tasks), which will list the stuff I've still got left to do when writing Java, if I add "// TODO...etc" comment lines in my code, which is great. It would be lovely to have this feature ... |
18 | Add NotesUI classes to JavaThomas Bahn3659 - 03 2007 / (5) Add the NotesUI classes like NotesUIDocument, NotesUIWorkspace etc. to the Java Notes-API.
This would allow programming Notes client applications completely with Java (and @formulas/JavaScript) and thus replacing LoutsScript. I see this as an alternative to enhance LotusScript to become a "real" OO language.
|
17 | Special Builder for Notes Java compilation, once Designer on Eclipse |
16 | Some member in NotesDXLImporter to inform about compile issuesAxel Janssen4993 - 08 2008 / (1) With notesDxlImporter we can insert code in for example database scripts. In the process the compiler tries to automatically compile this fresh code. Unfortuatedly I get no information about if the code actually did compile or did not due to errors in the inserted code in the new environment like ... |
16 | Modernize web service support to JAX-WSPer Holmberg439 - 01 2010 / (0) I think the web service support in Lotus should be modernized and support the JAX-WS (JSR 224), which is the standard web service API in Java from Java version 6. As far as I know, the built-in web service support in Domino 8.x is based on the ... |
15 | Working with pictures without DXLPropose to add type RTELEM_TYPE_PICTURE into NotesRichTextNavigator.FindFirstElement, etc. |
13 | Change Java item method parameters to use List instead of VectorNick Radov1333 - 26 2008 / (12) The Domino Object Model classes for Java that deal with multi-value items use the java.util.Vector class for item values. For example, see the lotus.domino.Item.setValues(Vector) method. That was a good design back when those classes were first created for Java 1.1. But since Java 1.2 the recommended best practice ... |
11 | Refinement NotesLog classGood idea, but there are some disadvantages in its use. I propose:
|
10 | Remove Err=4411 from NotesUIDocument.Save methodGeneration of this error is useless, it also hinders. All error handling should be done in the proper place - on QuerySave.
I propose that the Save method returns the result as Boolean, it's would be very convenient and usefull. |