Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

ADD A NEW IDEA

LotusScript

Showing 362

Extend GetItemValue() function

In a large part of my LS code, I always have to use HasItem() to check whether the item really exists. It would be nice if an optional parameter could be passed that returns a default value if the item doesn't exist.
almost 2 years ago in Domino Designer / LotusScript 2 Under Consideration

Improve auto complete/suggestions

If lotusscript code contains an error, autocompletion and suggestions fail. Please make sure that this works even when the code contains errors. This would help developers a lot.
about 2 years ago in Domino Designer / LotusScript 0 Under Consideration

Allow multiple script libraries to %Include the same constants

If you have two script libraries that both include the same constants file: 'LibraryA %Include "lsconst.lss" 'LibraryB %Include "lsconst.lss" and then you use both libraries in a design element 'FormC Use "LibraryA" Use "LibraryB" this generates t...
almost 3 years ago in Domino Designer / LotusScript 3 Under Consideration

global lotus scriptlibraries/objects

I have a project that consists of over 40 domino databases.There I have a class that encapsulates database access (session, datbase, view, ..).(dim appOrg as New App ("ProVeOrg") or dim appQuali as New App ("ProVeQuali") ...).This is used in many ...
almost 3 years ago in Domino Designer / LotusScript 4 Needs Review

Repair Unable To Extend an ID Table - Insufficient Memory error

We have databases with over 4-5 million documents and this error is killing us. The applications are innoperable in a second and nothing works to recover, compact, replicate, nothing.
over 4 years ago in Domino Designer / LotusScript 4 Under Consideration

Conflict handling - add an option to merge a field (especially document history fields)

Many developers add a "history" field in their applications to document when/who updated a document and what happened. This prevents the "Conflict Handling" form property "Merge Conflicts" option from working as there could always be a difference...
about 5 years ago in Domino Designer / LotusScript 4 Under Consideration

Easy way to set Template Version

Template Version 10.0.0 and Date is set in some $Icon design elements accessed only by scripts. should be a way to do this more friendly or even turn on Automatic numbering/build version
over 5 years ago in Domino Designer / LotusScript 0 Under Consideration

Make LotusScript Instr faster for iterating thru all matches in a long string

The current algorithm for Instr is very inefficient. If you give it a starting position for the search, it doesn't actually start searching at that location. Instead, it searches from the beginning of the string, and each time it finds a match, ch...
over 5 years ago in Domino Designer / LotusScript 1 Under Consideration

Support Partial Classes in LotusScript

Provide support for partial classes in a similar way to that allowed in Visual Basic, C# etc, This would allow me to take a class defined in one LotusScript library (or the based Notes classes) and extend them in another place.
over 5 years ago in Domino Designer / LotusScript 1 Under Consideration

Error handling: try.. catch java-style error handling in Lotusscript

Even javascript has this! java/javascript is like this: try { some lines of code... some code that erros } catch(error) { deal with error } With new Try Catch End Try block, Lotusscript could be .. Try Do this Do that Do anot...
over 5 years ago in Domino Designer / LotusScript 2 Under Consideration